From e1551d4745c2ed8d6bec57aa3994bb0327ae8c3c Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Fri, 17 Jan 2003 05:00:23 +0000 Subject: [PATCH] mips.h: Don't use #elif. * config/mips/mips.h: Don't use #elif. Reported by Kaveh R. Ghazi. From-SVN: r61425 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.h | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cff6712fe0b..fdd89d52af7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-17 Alexandre Oliva + + * config/mips/mips.h: Don't use #elif. Reported by Kaveh + R. Ghazi. + 2003-01-16 Kazu Hirata * ifcvt.c: Fix comment typos. diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 3e191800114..2514006d181 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -4690,7 +4690,8 @@ while (0) .set reorder\n\ jal " USER_LABEL_PREFIX #FUNC "\n\ " TEXT_SECTION_ASM_OP); -#elif (defined _ABIN32 && _MIPS_SIM == _ABIN32) \ +#endif /* Switch to #elif when we're no longer limited by K&R C. */ +#if (defined _ABIN32 && _MIPS_SIM == _ABIN32) \ || (defined _ABI64 && _MIPS_SIM == _ABI64) #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC) \ asm (SECTION_OP "\n\ -- 2.30.2