diff options
author | Richard Henderson <rth@cygnus.com> | 2000-05-10 10:42:17 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-05-10 10:42:17 -0700 |
commit | 0d12ea97198406563afcf4f7de411f702ca199ea (patch) | |
tree | 05cdb7e2f127fb927104c7b31eaf8a5cf8f22be1 | |
parent | 5ac38d52bb73f75fd11cae8074afbd4b42e7e459 (diff) | |
download | gcc-0d12ea97198406563afcf4f7de411f702ca199ea.zip gcc-0d12ea97198406563afcf4f7de411f702ca199ea.tar.gz gcc-0d12ea97198406563afcf4f7de411f702ca199ea.tar.bz2 |
flow.c (find_basic_blocks_1): Remove any spare bb_note after completion.
* flow.c (find_basic_blocks_1): Remove any spare bb_note
after completion.
From-SVN: r33826
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 11b21c8..c6d1951 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-05-10 Richard Henderson <rth@cygnus.com> + + * flow.c (find_basic_blocks_1): Remove any spare bb_note + after completion. + 2000-05-10 Bruce Korb <bkorb@gnu.org> * fixinc/gnu-regex.c: reg_syntax_t re_syntax_options must be static @@ -739,6 +739,8 @@ find_basic_blocks_1 (f) if (head != NULL_RTX) create_basic_block (i++, head, end, bb_note); + else if (bb_note) + flow_delete_insn (bb_note); if (i != n_basic_blocks) abort (); |