diff options
author | Richard Henderson <rth@redhat.com> | 2004-07-08 09:16:41 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-07-08 09:16:41 -0700 |
commit | cd7097527ee51b1bef879ef53505dff0673c98ba (patch) | |
tree | 200138df775b12823401ef7db79aecec6a2142da /gcc/tree-eh.c | |
parent | c618c6ec7e797b5aa69218b86cd643bb65c0c48a (diff) | |
download | gcc-cd7097527ee51b1bef879ef53505dff0673c98ba.zip gcc-cd7097527ee51b1bef879ef53505dff0673c98ba.tar.gz gcc-cd7097527ee51b1bef879ef53505dff0673c98ba.tar.bz2 |
tree-cfg.c (make_exit_edges): Use get_call_expr_in.
* tree-cfg.c (make_exit_edges): Use get_call_expr_in.
(remove_useless_stmts_1, is_ctrl_altering_stmt): Likewise.
(tree_block_ends_with_call_p, need_fake_edge_p): Likewise.
* tree-eh.c (lower_eh_constructs_1): Likewise.
* tree-sra.c (sra_walk_modify_expr): Likewise.
* tree-ssa-dce.c (mark_stmt_if_obviously_necessary): Likewise.
(eliminate_unnecessary_stmts): Likewise.
* tree-ssa-dse.c (dse_optimize_stmt): Likewise.
* tree-tailcall.c (optimize_tail_call): Likewise.
* tree-ssa-ccp.c (get_rhs, set_rhs): Reorg to use switch.
From-SVN: r84298
Diffstat (limited to 'gcc/tree-eh.c')
-rw-r--r-- | gcc/tree-eh.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/tree-eh.c b/gcc/tree-eh.c index c0ddf3e..9666e99 100644 --- a/gcc/tree-eh.c +++ b/gcc/tree-eh.c @@ -1552,14 +1552,17 @@ lower_eh_constructs_1 (struct leh_state *state, tree *tp) /* Look for things that can throw exceptions, and record them. */ if (state->cur_region && tree_could_throw_p (t)) { + tree op; + record_stmt_eh_region (state->cur_region, t); note_eh_region_may_contain_throw (state->cur_region); /* ??? For the benefit of calls.c, converting all this to rtl, we need to record the call expression, not just the outer modify statement. */ - if (TREE_CODE (TREE_OPERAND (t, 1)) == CALL_EXPR) - record_stmt_eh_region (state->cur_region, TREE_OPERAND (t, 1)); + op = get_call_expr_in (t); + if (op) + record_stmt_eh_region (state->cur_region, op); } break; |