diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-07-01 16:43:38 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-07-01 16:43:38 +0000 |
commit | 179d3252e3ee882c6c4127d291403b85727e5173 (patch) | |
tree | 7669c015ad581de963e18907d315569e1db0d397 /bfd/elf32-vax.c | |
parent | 3a1e71e3b16dd521ce7e6304b4f3379af582ed48 (diff) | |
download | gdb-179d3252e3ee882c6c4127d291403b85727e5173.zip gdb-179d3252e3ee882c6c4127d291403b85727e5173.tar.gz gdb-179d3252e3ee882c6c4127d291403b85727e5173.tar.bz2 |
include/elf:
2002-07-01 Matt Thomas <matt@3am-software.com>
* Rename EF_* to EF_VAX_*.
bfd:
2002-07-01 Matt Thomas <matt@3am-software.com>
* elf32-vax.c (elf32_vax_print_private_bfd_data): Change EF_*
to EF_VAX_*.
binutils:
2002-07-01 Matt Thomas <matt@3am-software.com>
* readelf.c: Include "elf/vax.h".
(guess_is_rela): Move EM_VAX from unknown to RELA case.
(dump_relocations): Handle VAX relocations.
(get_machine_flags): Handle VAX machine flags.
Diffstat (limited to 'bfd/elf32-vax.c')
-rw-r--r-- | bfd/elf32-vax.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf32-vax.c b/bfd/elf32-vax.c index bb5ee0be..e7145f1 100644 --- a/bfd/elf32-vax.c +++ b/bfd/elf32-vax.c @@ -542,13 +542,13 @@ elf32_vax_print_private_bfd_data (abfd, ptr) /* xgettext:c-format */ fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags); - if (elf_elfheader (abfd)->e_flags & EF_NONPIC) + if (elf_elfheader (abfd)->e_flags & EF_VAX_NONPIC) fprintf (file, _(" [nonpic]")); - if (elf_elfheader (abfd)->e_flags & EF_DFLOAT) + if (elf_elfheader (abfd)->e_flags & EF_VAX_DFLOAT) fprintf (file, _(" [d-float]")); - if (elf_elfheader (abfd)->e_flags & EF_GFLOAT) + if (elf_elfheader (abfd)->e_flags & EF_VAX_GFLOAT) fprintf (file, _(" [g-float]")); fputc ('\n', file); |