diff options
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 2 |
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) |