diff options
author | David Edelsohn <dje.gcc@gmail.com> | 1996-01-24 18:45:50 +0000 |
---|---|---|
committer | David Edelsohn <dje.gcc@gmail.com> | 1996-01-24 18:45:50 +0000 |
commit | 75c9ddc9c58f3c991f3330c2a7bfba50b05a346c (patch) | |
tree | 4e79bf407e89d455494c405b692e7d694e1c711e /bfd/archures.c | |
parent | 74ae0c978dcd75014671566f2d5989671cf3f439 (diff) | |
download | gdb-75c9ddc9c58f3c991f3330c2a7bfba50b05a346c.zip gdb-75c9ddc9c58f3c991f3330c2a7bfba50b05a346c.tar.gz gdb-75c9ddc9c58f3c991f3330c2a7bfba50b05a346c.tar.bz2 |
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Delete checking
of flags, only flags used are controlled by mach number. Bump up
output file mach number to highest of input file mach numbers.
(elf32_sparc_object_p): Watch for EF_SPARC_SUN_US1.
(elf32_sparc_final_write_processing): Set EF_SPARC_SUN_US1 if v8plusa.
Also, delete v8plus sanitization.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index 4c106e2..8c45942 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -93,12 +93,11 @@ DESCRIPTION . bfd_arch_a29k, {* AMD 29000 *} . bfd_arch_sparc, {* SPARC *} .#define bfd_mach_sparc 1 -. {* start-sanitize-v8plus *} +{* The difference between v8plus and v9 is that v9 is a true 64 bit env. *} .#define bfd_mach_sparc_v8plus 2 -.#define bfd_mach_sparc_v8plusa 3 -. {* end-sanitize-v8plus *} +.#define bfd_mach_sparc_v8plusa 3 {* with ultrasparc add'ns *} .#define bfd_mach_sparc_v9 4 -.#define bfd_mach_sparc_v9a 5 {* v9 with ultrasparc add'ns *} +.#define bfd_mach_sparc_v9a 5 {* with ultrasparc add'ns *} .{* Nonzero if MACH has the v9 instruction set. *} .#define bfd_mach_sparc_v9_p(mach) ((mach) != bfd_mach_sparc) . bfd_arch_mips, {* MIPS Rxxxx *} |