mips.c (mips_mdebug_abi_name): Fix the handling of ABI_64.

gcc/
	* config/mips/mips.c (mips_mdebug_abi_name): Fix the handling
	of ABI_64.

From-SVN: r144552
This commit is contained in:
Richard Sandiford 2009-03-02 20:26:22 +00:00 committed by Richard Sandiford
parent 500a1f8513
commit 6355305908
2 changed files with 6 additions and 1 deletions

View 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.

View 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: