* mips-tdep.c (mips_find_abi_section): .mdebug.abi64 is the name
authorAlexandre Oliva <aoliva@redhat.com>
Wed, 2 Oct 2002 01:28:55 +0000 (01:28 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Wed, 2 Oct 2002 01:28:55 +0000 (01:28 +0000)
of the section for the N64 ABI, fixed.

gdb/ChangeLog
gdb/mips-tdep.c

index e77a10c8c121ad88b5c4fb8b2132bdfcff58b899..b5ce6aed1e97cea50d91949d6fabbf1b319899c8 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  Elena Zannoni  <ezannoni@redhat.com>
index 627af2037129600f47f2974b8af586750fd6e0a9..fd61c5ba49dd1cb423bc9970ac0baa9b57cf6f3d 100644 (file)
@@ -5592,7 +5592,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;