From 6355305908e2458626a4cee2b7d08dda7b9afcf5 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Mon, 2 Mar 2009 20:26:22 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 525076600e0..baea2f8bead 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 64da58a7f12..f153d137411 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -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: -- 2.30.2