mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 11:33:45 +08:00
* mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
of the section for the N64 ABI, fixed.
This commit is contained in:
parent
d154bee237
commit
62a49b2cf4
@ -1,5 +1,8 @@
|
||||
2002-10-01 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
|
||||
of the section for the N64 ABI, fixed.
|
||||
|
||||
* config/mips/tm-irix6.h: Include solib.h.
|
||||
|
||||
2002-10-01 Elena Zannoni <ezannoni@redhat.com>
|
||||
|
@ -5592,7 +5592,7 @@ mips_find_abi_section (bfd *abfd, asection *sect, void *obj)
|
||||
*abip = MIPS_ABI_O32;
|
||||
else if (strcmp (name, ".mdebug.abiN32") == 0)
|
||||
*abip = MIPS_ABI_N32;
|
||||
else if (strcmp (name, ".mdebug.abiN64") == 0)
|
||||
else if (strcmp (name, ".mdebug.abi64") == 0)
|
||||
*abip = MIPS_ABI_N64;
|
||||
else if (strcmp (name, ".mdebug.abiO64") == 0)
|
||||
*abip = MIPS_ABI_O64;
|
||||
|
Loading…
Reference in New Issue
Block a user