diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-13 22:56:09 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-13 22:56:09 +0000 |
commit | e816161c45ce9bc7ee89586509e0ead244254e58 (patch) | |
tree | 69d618b00df041dbd5f5b6ceb0ae8946bfd4f07a /gcc/cfgrtl.c | |
parent | ac9db7eb0ee0587d6516344967ce936d29f71952 (diff) | |
download | gcc-e816161c45ce9bc7ee89586509e0ead244254e58.tar.gz |
* cfgbuild.c (make_edges): Set ABNORMAL with SIBCALL.
* cfgrtl.c (purge_dead_edges): Expect it too.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67917 138bc75d-0d04-0410-961f-82ee72b054a4
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 7c36c54d0ea..35757cd5475 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -2182,7 +2182,7 @@ purge_dead_edges (bb) should of course never have been a fallthru edge. */ if (!bb->succ || bb->succ->succ_next) abort (); - if (bb->succ->flags != EDGE_SIBCALL) + if (bb->succ->flags != (EDGE_SIBCALL | EDGE_ABNORMAL)) abort (); return 0; |