Commit 0c61c946 by Richard Kenner

(rs6000_makes_calls): If profiling, say we make calls.

From-SVN: r4467
parent 81d3c538
......@@ -1240,6 +1240,10 @@ rs6000_makes_calls ()
{
rtx insn;
/* If we are profiling, we will be making a call to mcount. */
if (profile_flag)
return 1;
for (insn = get_insns (); insn; insn = next_insn (insn))
if (GET_CODE (insn) == CALL_INSN)
return 1;
......
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