Commit 892c9f1f by Richard Kenner Committed by Richard Kenner

* combine.c (distribute_links): Properly test for REG being set.

From-SVN: r72310
parent 0dd62597
2003-10-10 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* combine.c (distribute_links): Properly test for REG being set.
* config/alpha/alpha.c (alpha_expand_block_mode): Don't use
gen_lowpart and company except for REG.
......
......@@ -12999,6 +12999,8 @@ distribute_links (rtx links)
place = insn;
break;
}
else if (INSN_P (insn) && reg_set_p (reg, insn))
break;
/* If we found a place to put the link, place it there unless there
is already a link to the same insn as LINK at that point. */
......
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