(emit_insns_after): Update last_insn if nec.

From-SVN: r2016
This commit is contained in:
Richard Stallman 1992-09-01 20:31:58 +00:00
parent 968e5643fc
commit c4d990db04
1 changed files with 2 additions and 0 deletions

View File

@ -2213,6 +2213,8 @@ emit_insns_after (first, after)
if (after_after)
PREV_INSN (after_after) = last;
if (after == last_insn)
last_insn = last;
return last;
}