diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-10 10:38:30 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-10 10:38:30 +0000 |
commit | c4c3cd53e2ffe277ddefbd2c56f52635afdde89d (patch) | |
tree | 82d9408541093ea1d1f5bd1bb4c82743eac57876 /gcc/function.c | |
parent | 8d144a3eb868e5fea135cc87f88d0c2eda11f50a (diff) | |
download | gcc-c4c3cd53e2ffe277ddefbd2c56f52635afdde89d.tar.gz |
PR middle-end/53590
* function.c (allocate_struct_function): Revert r188667 change.
* gimple-low.c (lower_builtin_setjmp): Use properly-typed constant.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212424 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index a0a3bc7526b..922ef3d7b2f 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4549,6 +4549,7 @@ allocate_struct_function (tree fndecl, bool abstract_p) /* ??? This could be set on a per-function basis by the front-end but is this worth the hassle? */ cfun->can_throw_non_call_exceptions = flag_non_call_exceptions; + cfun->can_delete_dead_exceptions = flag_delete_dead_exceptions; } } |