2000-11-15 Kazu Hirata <kazu@hxi.com>
* coff-arm.c: Fix formatting. * coff-ppc.c: Likewise. * coff-rs6000.c: Likewise.
This commit is contained in:
parent
b095261a94
commit
c5930ee6b4
4 changed files with 349 additions and 352 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2000-11-15 Kazu Hirata <kazu@hxi.com>
|
||||||
|
|
||||||
|
* coff-arm.c: Fix formatting.
|
||||||
|
* coff-ppc.c: Likewise.
|
||||||
|
* coff-rs6000.c: Likewise.
|
||||||
|
|
||||||
2000-11-15 Richard Henderson <rth@redhat.com>
|
2000-11-15 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
* elf64-alpha.c (elf64_alpha_check_relocs): Create the reloc
|
* elf64-alpha.c (elf64_alpha_check_relocs): Create the reloc
|
||||||
|
|
|
@ -26,7 +26,6 @@ You should have received a copy of the GNU General Public License
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
|
|
||||||
#include "bfd.h"
|
#include "bfd.h"
|
||||||
#include "sysdep.h"
|
#include "sysdep.h"
|
||||||
#include "libbfd.h"
|
#include "libbfd.h"
|
||||||
|
@ -37,7 +36,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
#define TARGET_SYM rs6000coff_vec
|
#define TARGET_SYM rs6000coff_vec
|
||||||
#include "xcoff-target.h"
|
#include "xcoff-target.h"
|
||||||
|
|
||||||
|
|
||||||
/* The main body of code is in coffcode.h. */
|
/* The main body of code is in coffcode.h. */
|
||||||
|
|
||||||
static const char *normalize_filename PARAMS ((bfd *));
|
static const char *normalize_filename PARAMS ((bfd *));
|
||||||
|
@ -133,7 +131,6 @@ _bfd_xcoff_is_local_label_name (abfd, name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
_bfd_xcoff_swap_sym_in (abfd, ext1, in1)
|
_bfd_xcoff_swap_sym_in (abfd, ext1, in1)
|
||||||
bfd *abfd;
|
bfd *abfd;
|
||||||
|
@ -143,7 +140,6 @@ _bfd_xcoff_swap_sym_in (abfd, ext1, in1)
|
||||||
SYMENT *ext = (SYMENT *)ext1;
|
SYMENT *ext = (SYMENT *)ext1;
|
||||||
struct internal_syment *in = (struct internal_syment *)in1;
|
struct internal_syment *in = (struct internal_syment *)in1;
|
||||||
|
|
||||||
|
|
||||||
if(ext->e.e_name[0] != 0)
|
if(ext->e.e_name[0] != 0)
|
||||||
{
|
{
|
||||||
memcpy(in->_n._n_name, ext->e.e_name, SYMNMLEN);
|
memcpy(in->_n._n_name, ext->e.e_name, SYMNMLEN);
|
||||||
|
@ -309,8 +305,6 @@ end: ;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
unsigned int
|
unsigned int
|
||||||
_bfd_xcoff_swap_aux_out (abfd, inp, type, class, indx, numaux, extp)
|
_bfd_xcoff_swap_aux_out (abfd, inp, type, class, indx, numaux, extp)
|
||||||
bfd *abfd;
|
bfd *abfd;
|
||||||
|
@ -409,7 +403,6 @@ end:
|
||||||
return bfd_coff_auxesz (abfd);
|
return bfd_coff_auxesz (abfd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* The XCOFF reloc table. Actually, XCOFF relocations specify the
|
/* The XCOFF reloc table. Actually, XCOFF relocations specify the
|
||||||
bitsize and whether they are signed or not, along with a
|
bitsize and whether they are signed or not, along with a
|
||||||
|
@ -992,7 +985,6 @@ struct xcoff_ar_file_hdr_big
|
||||||
|
|
||||||
#define SIZEOF_AR_FILE_HDR_BIG (6 * 20 + SXCOFFARMAG)
|
#define SIZEOF_AR_FILE_HDR_BIG (6 * 20 + SXCOFFARMAG)
|
||||||
|
|
||||||
|
|
||||||
/* Each XCOFF archive member starts with this (printable) structure. */
|
/* Each XCOFF archive member starts with this (printable) structure. */
|
||||||
|
|
||||||
struct xcoff_ar_hdr
|
struct xcoff_ar_hdr
|
||||||
|
@ -1069,7 +1061,6 @@ struct xcoff_ar_hdr_big
|
||||||
|
|
||||||
#define SIZEOF_AR_HDR_BIG (3 * 20 + 4 * 12 + 4)
|
#define SIZEOF_AR_HDR_BIG (3 * 20 + 4 * 12 + 4)
|
||||||
|
|
||||||
|
|
||||||
/* We often have to distinguish between the old and big file format.
|
/* We often have to distinguish between the old and big file format.
|
||||||
Make it a bit cleaner. We can use `xcoff_ardata' here because the
|
Make it a bit cleaner. We can use `xcoff_ardata' here because the
|
||||||
`hdr' member has the same size and position in both formats. */
|
`hdr' member has the same size and position in both formats. */
|
||||||
|
|
Loading…
Reference in a new issue