summaryrefslogtreecommitdiff
path: root/bfd/elf32-vax.c
diff options
context:
space:
mode:
authorJason Thorpe <thorpej@netbsd.org>2002-07-01 16:43:38 +0000
committerJason Thorpe <thorpej@netbsd.org>2002-07-01 16:43:38 +0000
commit33ca9e4a345dcec2129582e6b3419338cdb929ab (patch)
treec0e0baaa2447682f8e8f669bcf6682d2525970c2 /bfd/elf32-vax.c
parentdb1ce73d8a1c72aba4949d77996090da20f13df2 (diff)
downloadbinutils-redhat-33ca9e4a345dcec2129582e6b3419338cdb929ab.tar.gz
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/elf32-vax.c b/bfd/elf32-vax.c
index bb5ee0be1b..e7145f1222 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);