From: Richard Sandiford Date: Mon, 2 Mar 2009 20:42:24 +0000 (+0000) Subject: mips.c (mips_mdebug_abi_name): Fix the handling of ABI_64. X-Git-Tag: releases/gcc-4.3.4~296 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e74193ad445fa74d5403a7ba5ab913b40b66b6c;p=thirdparty%2Fgcc.git 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: r144553 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f6c5d16ec408..48fd14fd4b82 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-03-02 Richard Sandiford + + * config/mips/mips.c (mips_mdebug_abi_name): Fix the handling + of ABI_64. + 2009-03-02 Ulrich Weigand * config/spu/spu.c (TARGET_SECTION_TYPE_FLAGS): Define. diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 7661b0d93beb..71bb592b60cf 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -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: