Commit f87ef537 by Jim Wilson

(mark_target_live_regs): When scanning insns, ignore

CLOBBERs in addition to USEs.

From-SVN: r5513
parent 334eb142
......@@ -2475,7 +2475,8 @@ mark_target_live_regs (target, res)
clobber registers used for parameters. It isn't worth bothering
with the unlikely case when it won't. */
if ((GET_CODE (real_insn) == INSN
&& GET_CODE (PATTERN (real_insn)) != USE)
&& GET_CODE (PATTERN (real_insn)) != USE
&& GET_CODE (PATTERN (real_insn)) != CLOBBER)
|| GET_CODE (real_insn) == JUMP_INSN
|| GET_CODE (real_insn) == CALL_INSN)
{
......
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