Commit 49caeea1 by Bernd Schmidt Committed by Bernd Schmidt

bfin.c (bfin_longcall_p): Don't use short calls for weak symbols.

	* config/bfin/bfin.c (bfin_longcall_p): Don't use short calls for weak
	symbols.

From-SVN: r151685
parent d5968a86
2009-09-14 Bernd Schmidt <bernd.schmidt@analog.com>
* config/bfin/bfin.c (bfin_longcall_p): Don't use short calls for weak
symbols.
2009-09-14 Richard Guenther <rguenther@suse.de>
PR middle-end/41350
......
......@@ -2219,6 +2219,8 @@ bool
bfin_longcall_p (rtx op, int call_cookie)
{
gcc_assert (GET_CODE (op) == SYMBOL_REF);
if (SYMBOL_REF_WEAK (op))
return 1;
if (call_cookie & CALL_SHORT)
return 0;
if (call_cookie & CALL_LONG)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment