Commit b578dbd7 by Richard Henderson Committed by Richard Henderson

* flow.c (tidy_fallthru_edge): Update b->end properly.

From-SVN: r35879
parent bbcec4ef
2000-08-22 Richard Henderson <rth@cygnus.com>
* flow.c (tidy_fallthru_edge): Update b->end properly.
2000-08-22 Stan Cox <scox@redhat.com> 2000-08-22 Stan Cox <scox@redhat.com>
* Makefile.in (OBJS): Add dependence.o. * Makefile.in (OBJS): Add dependence.o.
......
...@@ -2554,7 +2554,9 @@ tidy_fallthru_edge (e, b, c) ...@@ -2554,7 +2554,9 @@ tidy_fallthru_edge (e, b, c)
NOTE_SOURCE_FILE (q) = 0; NOTE_SOURCE_FILE (q) = 0;
} }
else else
b->end = q = PREV_INSN (q); q = PREV_INSN (q);
b->end = q;
} }
/* Selectively unlink the sequence. */ /* Selectively unlink the sequence. */
......
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