This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Opps. flow.c fixn
- To: gcc-patches at gcc dot gnu dot org
- Subject: Opps. flow.c fixn
- From: Jeffrey A Law <law at localhost dot localdomain>
- Date: Tue, 19 Jun 2001 07:55:56 -0700
- Reply-to: law at redhat dot com
I guess it serves me right for assuming I'd fixed the patch reject properly.
* flow.c (delete_unreachable_blocks): Fix patch error in
previous change (call to find_unreachable_blocks was lost).
Index: flow.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/flow.c,v
retrieving revision 1.399
diff -c -3 -p -r1.399 flow.c
*** flow.c 2001/06/18 19:46:36 1.399
--- flow.c 2001/06/19 14:50:13
*************** delete_unreachable_blocks ()
*** 2108,2113 ****
--- 2108,2115 ----
{
int i;
+ find_unreachable_blocks ();
+
/* Delete all unreachable basic blocks. Count down so that we
don't interfere with the block renumbering that happens in
flow_delete_block. */