]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 2 Oct 2002 01:29:29 +0000 (01:29 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 2 Oct 2002 01:29:29 +0000 (01:29 +0000)
of the section for the N64 ABI, fixed.

gdb/ChangeLog
gdb/mips-tdep.c

index 4cafa33b5fb9ac8c42fc895a15b0681a409c8e18..30200b2ac2078fd56e71c0c810d36850841d5b20 100644 (file)
@@ -1,5 +1,8 @@
 2002-10-01  Alexandre Oliva  <aoliva@redhat.com>
 
+       * mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
+       of the section for the N64 ABI, fixed.
+
        * config/mips/tm-irix6.h: Include solib.h.
 
 2002-10-01  Andrew Cagney  <ac131313@redhat.com>
index 58e1a8b128d4eaae3cd37719f27c0682f5c9ea06..a8ff5776d75ebf5cc5f42a2d3572632f6c2e46d9 100644 (file)
@@ -5547,7 +5547,7 @@ 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)
+  else if (strcmp (name, ".mdebug.abi64") == 0)
     *abip = MIPS_ABI_N64;
   else if (strcmp (name, ".mdebug.abiO64") == 0)
     *abip = MIPS_ABI_O64;