From 179d3252e3ee882c6c4127d291403b85727e5173 Mon Sep 17 00:00:00 2001 From: Jason Thorpe Date: Mon, 1 Jul 2002 16:43:38 +0000 Subject: include/elf: 2002-07-01 Matt Thomas * Rename EF_* to EF_VAX_*. bfd: 2002-07-01 Matt Thomas * elf32-vax.c (elf32_vax_print_private_bfd_data): Change EF_* to EF_VAX_*. binutils: 2002-07-01 Matt Thomas * 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. --- bfd/elf32-vax.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bfd/elf32-vax.c') 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); -- cgit v1.1