diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-12-04 22:59:52 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-12-04 22:59:52 +0000 |
commit | 87fc988c5de8df7bc3242172a482bd2a371fc1a5 (patch) | |
tree | 6d453ab20d91b8b612234ae8d5323eaf63b03984 | |
parent | 210c77b38c6c3176137f5b52b3a298fee5c6fbec (diff) | |
download | bcm5719-llvm-87fc988c5de8df7bc3242172a482bd2a371fc1a5.tar.gz bcm5719-llvm-87fc988c5de8df7bc3242172a482bd2a371fc1a5.zip |
Enable if-conversion during vectorization.
llvm-svn: 169331
-rw-r--r-- | llvm/lib/Transforms/Vectorize/LoopVectorize.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp index ac62b110adb..20e073b1b94 100644 --- a/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp +++ b/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp @@ -82,7 +82,7 @@ VectorizationFactor("force-vector-width", cl::init(0), cl::Hidden, cl::desc("Set the default vectorization width. Zero is autoselect.")); static cl::opt<bool> -EnableIfConversion("enable-if-conversion", cl::init(false), cl::Hidden, +EnableIfConversion("enable-if-conversion", cl::init(true), cl::Hidden, cl::desc("Enable if-conversion during vectorization.")); /// We don't vectorize loops with a known constant trip count below this number. |