diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/opts.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8a9aff..f972d7b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-09-18 Dorit Nuzman <dorit@il.ibm.com> + + * opts.c (decode_options): Enable vectorization under -O3. + 2007-09-18 Richard Guenther <rguenther@suse.de> PR tree-optimization/33340 @@ -864,6 +864,7 @@ decode_options (unsigned int argc, const char **argv) flag_inline_functions = 1; flag_unswitch_loops = 1; flag_gcse_after_reload = 1; + flag_tree_vectorize = 1; /* Allow even more virtual operators. */ set_param_value ("max-aliased-vops", 1000); |