re PR tree-optimization/25737 (ACATS c974001 c974013 hang with struct aliasing)
authorEric Botcazou <ebotcazou@adacore.com>
Thu, 21 Jun 2007 10:11:19 +0000 (10:11 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Thu, 21 Jun 2007 10:11:19 +0000 (10:11 +0000)
PR tree-optimization/25737
* misc.c (gnat_post_options): Do not force flag_tree_salias to 0.

From-SVN: r125915

gcc/ada/ChangeLog
gcc/ada/misc.c

index 8d8c3b7..ed23efe 100644 (file)
@@ -1,3 +1,8 @@
+2007-06-21  Eric Botcazou  <ebotcazou@adacore.com>
+
+       PR tree-optimization/25737
+       * misc.c (gnat_post_options): Do not force flag_tree_salias to 0.
+
 2007-06-15  Andrew Pinski  <andrew_pinski@playstation.sony.com>
 
        * trans.c (Attribute_to_gnu): When subtracting an
index ece8553..5abb398 100644 (file)
@@ -376,11 +376,6 @@ gnat_post_options (const char **pfilename ATTRIBUTE_UNUSED)
   else
     flag_eliminate_unused_debug_types = 0;
 
-  /* The structural alias analysis machinery essentially assumes that
-     everything is addressable (modulo bit-fields) by disregarding
-     the TYPE_NONALIASED_COMPONENT and DECL_NONADDRESSABLE_P macros.  */
-  flag_tree_salias = 0;
-
   return false;
 }