From cf9000971330edf49616839494cb049b07d2485d Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Sat, 6 Sep 2008 09:21:39 +0000 Subject: mips.c (mips_function_ok_for_sibcall): Check for DECL being null. gcc/ * config/mips/mips.c (mips_function_ok_for_sibcall): Check for DECL being null. From-SVN: r140056 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 280b57170a4..f3a30d97222 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-09-06 Richard Sandiford + + * config/mips/mips.c (mips_function_ok_for_sibcall): Check for + DECL being null. + 2008-09-06 Richard Sandiford Peter Fuerst diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 9187991c763..799570cc7ae 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -6173,7 +6173,8 @@ mips_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED) because there is no direct "jx" instruction equivalent to "jalx" to switch the ISA mode. We only care about cases where the sibling and normal calls would both be direct. */ - if (mips_use_mips16_mode_p (decl) + if (decl + && mips_use_mips16_mode_p (decl) && const_call_insn_operand (XEXP (DECL_RTL (decl), 0), VOIDmode)) return false; -- cgit v1.2.1