diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-03 16:22:38 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-03 16:22:38 +0000 |
commit | 1b7607f106955b19e806fedfb37105e30db59528 (patch) | |
tree | 93a1e8691120e7ab4530ebc06e8ded994f83108f /gcc/cfgexpand.c | |
parent | 379a1f2cf5e8f9a5b9e254a7c25c608389e82dc3 (diff) | |
download | gcc-1b7607f106955b19e806fedfb37105e30db59528.tar.gz |
* cfgexpand.c (construct_exit_block): Use EDGE_PRED instead of
EDGE_I.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95834 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index d429c69661e..ce2666113d4 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 |