summaryrefslogtreecommitdiff
path: root/gcc/cfgloopmanip.c
diff options
context:
space:
mode:
authorrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>2003-02-05 20:04:53 +0000
committerrakdver <rakdver@138bc75d-0d04-0410-961f-82ee72b054a4>2003-02-05 20:04:53 +0000
commitb536af40defacfb53bb8cfff50c0f74d6039f4fe (patch)
tree9586b4fd765bd8b9d97d32956f4a8f5c744820dc /gcc/cfgloopmanip.c
parent55ce1e31d9e9e4ca1582277150eef0743c231db4 (diff)
downloadgcc-b536af40defacfb53bb8cfff50c0f74d6039f4fe.tar.gz
* cfgloopmanip.c (force_single_succ_latches): Fix missindentation.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62451 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgloopmanip.c')
-rw-r--r--gcc/cfgloopmanip.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/cfgloopmanip.c b/gcc/cfgloopmanip.c
index 1ee45586006..e22cb12caf7 100644
--- a/gcc/cfgloopmanip.c
+++ b/gcc/cfgloopmanip.c
@@ -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;
}