diff options
author | davidxl <davidxl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-16 19:55:40 +0000 |
---|---|---|
committer | davidxl <davidxl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-09-16 19:55:40 +0000 |
commit | 043115ec2d2ce23d00b19598983d622d2d921e9c (patch) | |
tree | e1b8d1443dde493d2c9c34e9b0ab6688fc4cfe05 /gcc/common.opt | |
parent | 83706e6b57774d492e6be03d9cfd2bbd672668f7 (diff) | |
download | gcc-043115ec2d2ce23d00b19598983d622d2d921e9c.tar.gz |
Introduce -ftree-loop-vectorize option
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@202636 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/common.opt')
-rw-r--r-- | gcc/common.opt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/common.opt b/gcc/common.opt index fae976393d5..202e169d281 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -2264,14 +2264,18 @@ Perform variable tracking and also tag variables that are uninitialized ftree-vectorize Common Report Var(flag_tree_vectorize) Optimization -Enable loop vectorization on trees +Enable vectorization on trees ftree-vectorizer-verbose= Common RejectNegative Joined UInteger Var(common_deferred_options) Defer -ftree-vectorizer-verbose=<number> This switch is deprecated. Use -fopt-info instead. +ftree-loop-vectorize +Common Report Var(flag_tree_loop_vectorize) Optimization +Enable loop vectorization on trees + ftree-slp-vectorize -Common Report Var(flag_tree_slp_vectorize) Init(2) Optimization +Common Report Var(flag_tree_slp_vectorize) Optimization Enable basic block vectorization (SLP) on trees fvect-cost-model |