diff options
author | Dorit Nuzman <dorit@il.ibm.com> | 2007-09-18 11:13:35 +0000 |
---|---|---|
committer | Dorit Nuzman <dorit@gcc.gnu.org> | 2007-09-18 11:13:35 +0000 |
commit | c55f4e7c19a110fdcd57a7a1596aa9b466263ddf (patch) | |
tree | e618c4e87f32e238bc0f4ae67a6229cec3a3031b /gcc/opts.c | |
parent | fe4fefa0e080704dbd17cd662fa20b0f66818a50 (diff) | |
download | gcc-c55f4e7c19a110fdcd57a7a1596aa9b466263ddf.zip gcc-c55f4e7c19a110fdcd57a7a1596aa9b466263ddf.tar.gz gcc-c55f4e7c19a110fdcd57a7a1596aa9b466263ddf.tar.bz2 |
* opts.c (decode_options): Enable vectorization under -O3.
From-SVN: r128572
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |