diff options
author | Clinton Popetz <cpopetz@cpopetz.com> | 2000-05-06 01:41:50 +0000 |
---|---|---|
committer | Clinton Popetz <cpopetz@cpopetz.com> | 2000-05-06 01:41:50 +0000 |
commit | c6664dfb26da335900bc3276764e24362a54e372 (patch) | |
tree | 69c7af37152c239f2f692f15a3bcd0bd4ae177e1 /bfd/coffcode.h | |
parent | e919ea793df3bb786de64e259076361a0b2534a3 (diff) | |
download | gdb-c6664dfb26da335900bc3276764e24362a54e372.zip gdb-c6664dfb26da335900bc3276764e24362a54e372.tar.gz gdb-c6664dfb26da335900bc3276764e24362a54e372.tar.bz2 |
bfd:
* coffcode.h (coff_set_arch_mach_hook, coff_set_flags):
Change U802TOC64MAGIC to U803XTOCMAGIC.
include:
* coff/rs6k64.h (U802TOC64MAGIC): Change to U803XTOCMAGIC.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 59469fd..26c8620 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -1910,7 +1910,7 @@ coff_set_arch_mach_hook (abfd, filehdr) #ifdef RS6000COFF_C #ifdef XCOFF64 - case U802TOC64MAGIC: + case U803XTOCMAGIC: #else case U802ROMAGIC: case U802WRMAGIC: @@ -2694,7 +2694,7 @@ coff_set_flags (abfd, magicp, flagsp) #endif #ifdef XCOFF64 if (bfd_get_mach (abfd) == 620 && !strncmp (abfd->xvec->name,"aix", 3)) - *magicp = U802TOC64MAGIC; + *magicp = U803XTOCMAGIC; else #else *magicp = U802TOCMAGIC; |