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

value.

From-SVN: r1857
This commit is contained in:
Richard Kenner 1992-08-15 06:35:08 -04:00
parent 2ef32c884e
commit 2fc9c644a4
1 changed files with 2 additions and 2 deletions

View File

@ -8226,9 +8226,9 @@ get_last_value (x)
{
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 = prev_active_insn (insn))
insn = prev_nonnote_insn (insn))
;
if (insn