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/cfgbuild.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/cfgbuild.c')
-rw-r--r-- | gcc/cfgbuild.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfgbuild.c b/gcc/cfgbuild.c index ed8dfb88066..de57653ab46 100644 --- a/gcc/cfgbuild.c +++ b/gcc/cfgbuild.c @@ -406,7 +406,8 @@ make_edges (label_value_list, min, max, update_p) worry about EH edges, since we wouldn't have created the sibling call in the first place. */ if (code == CALL_INSN && SIBLING_CALL_P (insn)) - cached_make_edge (edge_cache, bb, EXIT_BLOCK_PTR, EDGE_SIBCALL); + cached_make_edge (edge_cache, bb, EXIT_BLOCK_PTR, + EDGE_SIBCALL | EDGE_ABNORMAL); /* If this is a CALL_INSN, then mark it as reaching the active EH handler for this CALL_INSN. If we're handling non-call |