Commit c55f4e7c by Dorit Nuzman Committed by Dorit Nuzman

* opts.c (decode_options): Enable vectorization under -O3.

From-SVN: r128572
parent fe4fefa0
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> 2007-09-18 Richard Guenther <rguenther@suse.de>
PR tree-optimization/33340 PR tree-optimization/33340
...@@ -864,6 +864,7 @@ decode_options (unsigned int argc, const char **argv) ...@@ -864,6 +864,7 @@ decode_options (unsigned int argc, const char **argv)
flag_inline_functions = 1; flag_inline_functions = 1;
flag_unswitch_loops = 1; flag_unswitch_loops = 1;
flag_gcse_after_reload = 1; flag_gcse_after_reload = 1;
flag_tree_vectorize = 1;
/* Allow even more virtual operators. */ /* Allow even more virtual operators. */
set_param_value ("max-aliased-vops", 1000); set_param_value ("max-aliased-vops", 1000);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment