diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2014-07-10 10:38:30 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-07-10 10:38:30 +0000 |
commit | d764963b54885cdf3604e54717b1a137492d7415 (patch) | |
tree | 82d9408541093ea1d1f5bd1bb4c82743eac57876 /gcc/function.c | |
parent | 56710419ba3361dca740bfa1dc29be0d959246de (diff) | |
download | gcc-d764963b54885cdf3604e54717b1a137492d7415.zip gcc-d764963b54885cdf3604e54717b1a137492d7415.tar.gz gcc-d764963b54885cdf3604e54717b1a137492d7415.tar.bz2 |
re PR middle-end/53590 (compiler fails to generate SIMD instruction for FP division)
PR middle-end/53590
* function.c (allocate_struct_function): Revert r188667 change.
* gimple-low.c (lower_builtin_setjmp): Use properly-typed constant.
From-SVN: r212424
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 a0a3bc7..922ef3d 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; } } |