re PR middle-end/53590 (compiler fails to generate SIMD instruction for FP division)
authorEric Botcazou <ebotcazou@adacore.com>
Sat, 16 Jun 2012 11:05:43 +0000 (11:05 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sat, 16 Jun 2012 11:05:43 +0000 (11:05 +0000)
PR middle-end/53590
* tree-inline.c (initialize_cfun): Copy can_delete_dead_exceptions.

From-SVN: r188691

gcc/ChangeLog
gcc/tree-inline.c

index b1b6cb448473bd6e68ec284ca1faae1cf819ad01..caaef02422084a74c2446d6088180826327d3e97 100644 (file)
@@ -1,3 +1,8 @@
+2012-06-16  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR middle-end/53590
+       * tree-inline.c (initialize_cfun): Copy can_delete_dead_exceptions.
+
 2012-06-15   Easwaran Raman  <eraman@google.com>
 
        * passes.c (init_optimization_passes): Remove pass_call_cdce
index ccda8c9a7f54a873303b80ec27fa49da3d38b7d0..9a6db4040e95bed2d49aad7433eb910ab296f675 100644 (file)
@@ -2107,6 +2107,7 @@ initialize_cfun (tree new_fndecl, tree callee_fndecl, gcov_type count)
   cfun->after_inlining = src_cfun->after_inlining;
   cfun->can_throw_non_call_exceptions
     = src_cfun->can_throw_non_call_exceptions;
+  cfun->can_delete_dead_exceptions = src_cfun->can_delete_dead_exceptions;
   cfun->returns_struct = src_cfun->returns_struct;
   cfun->returns_pcc_struct = src_cfun->returns_pcc_struct;
   cfun->after_tree_profile = src_cfun->after_tree_profile;