Commit 1075deda by Ian Lance Taylor

Skip inappropriate LOG_LINK entries when looking for reg-setting call

insn

From-SVN: r12442
parent 4f517a9c
......@@ -1460,6 +1460,8 @@ machine_dependent_reorg (first)
for (link = LOG_LINKS (insn); link; link = XEXP (link, 1))
{
if (REG_NOTE_KIND (link) != 0)
continue;
set = single_set (XEXP (link, 0));
if (set && rtx_equal_p (reg, SET_DEST (set)))
{
......
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