Commit 2fc9c644 by Richard Kenner

(get_last_value): Don't go past a CODE_LABEL when searching for a

value.

From-SVN: r1857
parent 2ef32c88
...@@ -8226,9 +8226,9 @@ get_last_value (x) ...@@ -8226,9 +8226,9 @@ get_last_value (x)
{ {
rtx insn, set; rtx insn, set;
for (insn = prev_active_insn (subst_insn); for (insn = prev_nonnote_insn (subst_insn);
insn && INSN_CUID (insn) >= subst_low_cuid; insn && INSN_CUID (insn) >= subst_low_cuid;
insn = prev_active_insn (insn)) insn = prev_nonnote_insn (insn))
; ;
if (insn if (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