mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:30:58 +08:00
Fix last commit.
From-SVN: r130654
This commit is contained in:
parent
0b6e16476f
commit
dd748704c4
@ -1,7 +1,7 @@
|
||||
2007-12-06 Richard Sandiford <rsandifo@nildram.co.uk>
|
||||
|
||||
* config/mips/mips.c (mips_function_ok_for_sibcall): Use
|
||||
targetm.binds_local_p instead of DECL_EXTERNAL.
|
||||
* config/mips/mips.c (mips_function_ok_for_sibcall): Check
|
||||
targetm.binds_local_p as well as DECL_EXTERNAL.
|
||||
|
||||
2007-12-06 Harsha Jagasia <harsha.jagasia@amd.com>
|
||||
|
||||
|
@ -5616,7 +5616,7 @@ mips_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
|
||||
us otherwise. */
|
||||
if (TARGET_INTERLINK_MIPS16
|
||||
&& decl
|
||||
&& !targetm.binds_local_p (decl)
|
||||
&& (DECL_EXTERNAL (decl) || !targetm.binds_local_p (decl))
|
||||
&& !mips_nomips16_decl_p (decl)
|
||||
&& const_call_insn_operand (XEXP (DECL_RTL (decl), 0), VOIDmode))
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user