* mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition

test.  (Thanks to Daniel Jacobowitz.)
This commit is contained in:
Kevin Buettner 2002-07-31 19:08:46 +00:00
parent 28d169dec8
commit e3bddbfa39
2 changed files with 7 additions and 0 deletions

View File

@ -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.

View File

@ -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)