Index: gdb/ChangeLog from Alexandre Oliva * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name of the section for the N64 ABI, fixed. Index: gdb/mips-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/mips-tdep.c,v retrieving revision 1.119 diff -u -p -r1.119 mips-tdep.c --- gdb/mips-tdep.c 24 Aug 2002 00:21:35 -0000 1.119 +++ gdb/mips-tdep.c 2 Oct 2002 00:54:02 -0000 @@ -5547,7 +5547,7 @@ mips_find_abi_section (bfd *abfd, asecti *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;