OSDN Git Service

* cfgloopmanip.c (force_single_succ_latches): Fix missindentation.
authorrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 5 Feb 2003 20:04:53 +0000 (20:04 +0000)
committerrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 5 Feb 2003 20:04:53 +0000 (20:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62451 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cfgloopmanip.c

index b08c3a4..0bcfdb4 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-25  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
+
+       * cfgloopmanip.c (force_single_succ_latches): Fix missindentation.
+
 2003-02-05  Hans Boehm <Hans.Boehm@hp.com>
 
        * config/ia64/unwind-ia64.c: include coretypes.h, tm.h to get
index 1ee4558..e22cb12 100644 (file)
@@ -159,8 +159,10 @@ force_single_succ_latches (loops)
       if (!loop->latch->succ->succ_next)
        continue;
  
-      for (e = loop->header->pred; e->src != loop->latch; e = e->pred_next);
-       loop_split_edge_with (e, NULL_RTX, loops);
+      for (e = loop->header->pred; e->src != loop->latch; e = e->pred_next)
+       continue;
+
+      loop_split_edge_with (e, NULL_RTX, loops);
     }
   loops->state |= LOOPS_HAVE_SIMPLE_LATCHES;
 }