diff options
Diffstat (limited to 'gcc/cfgloop.c')
-rw-r--r-- | gcc/cfgloop.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index c242756e848..22bce4f3190 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -410,10 +410,7 @@ flow_loops_find (struct loops *loops) /* If we have an abnormal predecessor, do not consider the loop (not worth the problems). */ - FOR_EACH_EDGE (e, ei, header->preds) - if (e->flags & EDGE_ABNORMAL) - break; - if (e) + if (bb_has_abnormal_pred (header)) continue; FOR_EACH_EDGE (e, ei, header->preds) |