]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
mips.c (mips_mdebug_abi_name): Fix the handling of ABI_64.
authorRichard Sandiford <rdsandiford@googlemail.com>
Mon, 2 Mar 2009 20:42:24 +0000 (20:42 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Mon, 2 Mar 2009 20:42:24 +0000 (20:42 +0000)
gcc/
* config/mips/mips.c (mips_mdebug_abi_name): Fix the handling
of ABI_64.

From-SVN: r144553

gcc/ChangeLog
gcc/config/mips/mips.c

index f6c5d16ec4085fb3ac581d36803360f36fdfffe6..48fd14fd4b827cfd470ea123856bfcb75e2884bc 100644 (file)
@@ -1,3 +1,8 @@
+2009-03-02  Richard Sandiford  <rdsandiford@googlemail.com>
+
+       * config/mips/mips.c (mips_mdebug_abi_name): Fix the handling
+       of ABI_64.
+
 2009-03-02  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
 
        * config/spu/spu.c (TARGET_SECTION_TYPE_FLAGS): Define.
index 7661b0d93beb4f3aac59b44de3f68afb4da9f345..71bb592b60cf9eaad74a9f195522acb292f08e69 100644 (file)
@@ -7080,7 +7080,7 @@ mips_mdebug_abi_name (void)
     case ABI_N32:
       return "abiN32";
     case ABI_64:
-      return "abiN64";
+      return "abi64";
     case ABI_EABI:
       return TARGET_64BIT ? "eabi64" : "eabi32";
     default: