]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* opts.c (decode_options): Enable vectorization under -O3.
authordorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Sep 2007 11:13:35 +0000 (11:13 +0000)
committerdorit <dorit@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Sep 2007 11:13:35 +0000 (11:13 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128572 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/opts.c

index f8a9aff6c15cec4bd176a58bc50dc1f9d9c0038b..f972d7b297bbb731fe8d3a652269be1682f08dfc 100644 (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
index e935fd9509c10db3d64d4af50e7e521d6b4cf1a9..4472cbe328c243d26000ad8b0d1394c6df8cd1b0 100644 (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);