2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-01-23 12:04:28 +08:00

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

From-SVN: r128572
This commit is contained in:
Dorit Nuzman 2007-09-18 11:13:35 +00:00 committed by Dorit Nuzman
parent fe4fefa0e0
commit c55f4e7c19
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -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);