diff options
author | Jan Hubicka <jh@suse.cz> | 2001-12-17 18:56:04 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-12-17 17:56:04 +0000 |
commit | 25b44be580d5a9dd0bde5802c82c758890a057ab (patch) | |
tree | 03a7afd14c47bcda5954fb5424c4ec694107a53a /gcc/cfgrtl.c | |
parent | f438273e10f2a6c27bb604c81713d0affed465c3 (diff) | |
download | gcc-25b44be580d5a9dd0bde5802c82c758890a057ab.zip gcc-25b44be580d5a9dd0bde5802c82c758890a057ab.tar.gz gcc-25b44be580d5a9dd0bde5802c82c758890a057ab.tar.bz2 |
cfgrtl.c (redirect_edge_and_branch): Do simplify abnormal edges resulting from computed jump
* cfgrtl.c (redirect_edge_and_branch): Do simplify abnormal
edges resulting from computed jump
From-SVN: r48113
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index efc05313..08912c5 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -792,7 +792,7 @@ redirect_edge_and_branch (e, target) basic_block src = e->src; rtx insn = src->end; - if (e->flags & EDGE_COMPLEX) + if (e->flags & (EDGE_ABNORMAL_CALL | EDGE_EH)) return false; if (try_redirect_by_replacing_jump (e, target)) |