diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-04-26 09:29:46 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2007-04-26 09:29:46 +0200 |
commit | e0eb05eaa18608b8aacd94d1c74ceac2ea581191 (patch) | |
tree | 8e713314d70a2457d3d1988305713743db656680 /gcc/tree-eh.c | |
parent | 29173496a0453f740b280bcc1f1ddbebc2726ced (diff) | |
download | gcc-e0eb05eaa18608b8aacd94d1c74ceac2ea581191.zip gcc-e0eb05eaa18608b8aacd94d1c74ceac2ea581191.tar.gz gcc-e0eb05eaa18608b8aacd94d1c74ceac2ea581191.tar.bz2 |
re PR tree-optimization/30558 (ICE with OpenMP and exceptions)
PR tree-optimization/30558
* tree-eh.c (lower_eh_filter): If EH_FILTER_MUST_NOT_THROW
clear this_state.prev_try.
* g++.dg/gomp/pr30558.C: New test.
From-SVN: r124177
Diffstat (limited to 'gcc/tree-eh.c')
-rw-r--r-- | gcc/tree-eh.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-eh.c b/gcc/tree-eh.c index edd17cb..37fce85 100644 --- a/gcc/tree-eh.c +++ b/gcc/tree-eh.c @@ -1497,6 +1497,10 @@ lower_eh_filter (struct leh_state *state, tree *tp) EH_FILTER_TYPES (inner)); this_state = *state; this_state.cur_region = this_region; + /* For must not throw regions any cleanup regions inside it + can't reach outer catch regions. */ + if (EH_FILTER_MUST_NOT_THROW (inner)) + this_state.prev_try = NULL; lower_eh_constructs_1 (&this_state, &TREE_OPERAND (*tp, 0)); |