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): Add N64 ABI recognition
test. (Thanks to Daniel Jacobowitz.)
This commit is contained in:
parent
28d169dec8
commit
e3bddbfa39
@ -1,3 +1,8 @@
|
||||
2002-07-31 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
|
||||
test. (Thanks to Daniel Jacobowitz.)
|
||||
|
||||
2002-07-31 Kevin Buettner <kevinb@redhat.com>
|
||||
|
||||
* mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
|
||||
|
@ -4252,6 +4252,8 @@ 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)
|
||||
*abip = MIPS_ABI_N64;
|
||||
else if (strcmp (name, ".mdebug.abiO64") == 0)
|
||||
*abip = MIPS_ABI_O64;
|
||||
else if (strcmp (name, ".mdebug.eabi32") == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user