diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-14 19:18:58 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-14 19:18:58 +0000 |
commit | e38def9ca7953bb5611d08ce8617249516ba5a99 (patch) | |
tree | 2fcbbb5f99b13293753d83230cf9f4e0893a9b51 /gcc/omp-low.c | |
parent | 74facf6eece2aa84e36088e8e9adf175920b2e8a (diff) | |
download | gcc-e38def9ca7953bb5611d08ce8617249516ba5a99.tar.gz |
Squash commit of EH in gimple
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151696 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/omp-low.c')
-rw-r--r-- | gcc/omp-low.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/gcc/omp-low.c b/gcc/omp-low.c index a7de367e432..5cd9463c122 100644 --- a/gcc/omp-low.c +++ b/gcc/omp-low.c @@ -1214,7 +1214,7 @@ new_omp_context (gimple stmt, omp_context *outer_ctx) ctx->cb.dst_node = ctx->cb.src_node; ctx->cb.src_cfun = cfun; ctx->cb.copy_decl = omp_copy_decl; - ctx->cb.eh_region = -1; + ctx->cb.eh_lp_nr = 0; ctx->cb.transform_call_graph_edges = CB_CGE_MOVE; ctx->depth = 1; } @@ -3114,23 +3114,22 @@ expand_task_call (basic_block bb, gimple entry_stmt) static gimple_seq maybe_catch_exception (gimple_seq body) { - gimple f, t; + gimple g; + tree decl; if (!flag_exceptions) return body; if (lang_protect_cleanup_actions) - t = lang_protect_cleanup_actions (); + decl = lang_protect_cleanup_actions (); else - t = gimple_build_call (built_in_decls[BUILT_IN_TRAP], 0); + decl = built_in_decls[BUILT_IN_TRAP]; - f = gimple_build_eh_filter (NULL, gimple_seq_alloc_with_stmt (t)); - gimple_eh_filter_set_must_not_throw (f, true); - - t = gimple_build_try (body, gimple_seq_alloc_with_stmt (f), + g = gimple_build_eh_must_not_throw (decl); + g = gimple_build_try (body, gimple_seq_alloc_with_stmt (g), GIMPLE_TRY_CATCH); - return gimple_seq_alloc_with_stmt (t); + return gimple_seq_alloc_with_stmt (g); } /* Chain all the DECLs in LIST by their TREE_CHAIN fields. */ @@ -6244,7 +6243,7 @@ create_task_copyfn (gimple task_stmt, omp_context *ctx) tcctx.cb.dst_node = tcctx.cb.src_node; tcctx.cb.src_cfun = ctx->cb.src_cfun; tcctx.cb.copy_decl = task_copyfn_copy_decl; - tcctx.cb.eh_region = -1; + tcctx.cb.eh_lp_nr = 0; tcctx.cb.transform_call_graph_edges = CB_CGE_MOVE; tcctx.cb.decl_map = pointer_map_create (); tcctx.ctx = ctx; |