diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2007-06-21 10:11:19 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2007-06-21 10:11:19 +0000 |
commit | a8257e58ac6213ce066a19950dcd4eda75f41e2a (patch) | |
tree | 338804bada0d3397da84771cae9decdb69c07771 /gcc/ada/misc.c | |
parent | 5c7cafa8dc040ac9573f81ce9f9cdd6111ca83a4 (diff) | |
download | gcc-a8257e58ac6213ce066a19950dcd4eda75f41e2a.zip gcc-a8257e58ac6213ce066a19950dcd4eda75f41e2a.tar.gz gcc-a8257e58ac6213ce066a19950dcd4eda75f41e2a.tar.bz2 |
re PR tree-optimization/25737 (ACATS c974001 c974013 hang with struct aliasing)
PR tree-optimization/25737
* misc.c (gnat_post_options): Do not force flag_tree_salias to 0.
From-SVN: r125915
Diffstat (limited to 'gcc/ada/misc.c')
-rw-r--r-- | gcc/ada/misc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c index ece8553c..5abb398 100644 --- a/gcc/ada/misc.c +++ b/gcc/ada/misc.c @@ -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; } |