gcc/
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Mar 2009 20:26:22 +0000 (20:26 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 2 Mar 2009 20:26:22 +0000 (20:26 +0000)
* config/mips/mips.c (mips_mdebug_abi_name): Fix the handling
of ABI_64.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144552 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 5250766..baea2f8 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 64da58a..f153d13 100644 (file)
@@ -7782,7 +7782,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: