aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgexpand.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r--gcc/cfgexpand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c
index d429c69..ce26661 100644
--- a/gcc/cfgexpand.c
+++ b/gcc/cfgexpand.c
@@ -1237,7 +1237,7 @@ construct_exit_block (void)
ix = 0;
while (ix < EDGE_COUNT (EXIT_BLOCK_PTR->preds))
{
- e = EDGE_I (EXIT_BLOCK_PTR->preds, ix);
+ e = EDGE_PRED (EXIT_BLOCK_PTR, ix);
if (!(e->flags & EDGE_ABNORMAL))
redirect_edge_succ (e, exit_block);
else