aboutsummaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2002-07-31 19:08:46 +0000
committerKevin Buettner <kevinb@redhat.com>2002-07-31 19:08:46 +0000
commite3bddbfa39c76adabc3291b8e3467a972333f75f (patch)
tree821be69742c8a26d13a52698f1fb18496fd056ca /gdb/mips-tdep.c
parent28d169dec84a6f28f205144a914c009484776016 (diff)
downloadgdb-e3bddbfa39c76adabc3291b8e3467a972333f75f.zip
gdb-e3bddbfa39c76adabc3291b8e3467a972333f75f.tar.gz
gdb-e3bddbfa39c76adabc3291b8e3467a972333f75f.tar.bz2
* mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
test. (Thanks to Daniel Jacobowitz.)
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 6d32f4e..5f2ef95 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -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)