Commit 2fdc4440 by Andreas Schwab Committed by Jeff Law

function.c (purge_addressof_1): Force the first argument of a CALL insn to memory.

�
        * function.c (purge_addressof_1): Force the first argument of a
        CALL insn to memory.

From-SVN: r23071
parent ce694881
......@@ -2950,6 +2950,12 @@ purge_addressof_1 (loc, insn, force, store)
purge_addressof_1 (&SET_SRC (x), insn, force, 0);
return;
}
else if (code == CALL)
{
purge_addressof_1 (&XEXP (x, 0), insn, 1, 0);
purge_addressof_1 (&XEXP (x, 1), insn, force, 0);
return;
}
/* Scan all subexpressions. */
fmt = GET_RTX_FORMAT (code);
......
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