Commit e21fa13a by Richard Kenner

(stupid_life_analysis): Check the usage information on CALL_INSNs.

From-SVN: r7249
parent d7e09326
......@@ -214,6 +214,8 @@ stupid_life_analysis (f, nregs, file)
for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
if (call_used_regs[i])
regs_live[i] = 0;
stupid_mark_refs (CALL_INSN_FUNCTION_USAGE (insn), insn);
}
/* Update which hard regs are currently live
......@@ -385,10 +387,15 @@ static void
stupid_mark_refs (x, insn)
rtx x, insn;
{
register RTX_CODE code = GET_CODE (x);
register RTX_CODE code;
register char *fmt;
register int regno, i;
if (x == 0)
return;
code = GET_CODE (x);
if (code == SET || code == CLOBBER)
{
if (SET_DEST (x) != 0 && GET_CODE (SET_DEST (x)) == REG)
......
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