Commit bc810602 by Zdenek Dvorak Committed by Zdenek Dvorak

* cfgloopmanip.c (force_single_succ_latches): Fix missindentation.

From-SVN: r62451
parent 37d055f8
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
......
......@@ -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;
}
......
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