Skip to content

Commit 3b606d6

Browse files
committed
Enable the loop vectorizer.
llvm-svn: 170166
1 parent 6851099 commit 3b606d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Transforms/IPO/PassManagerBuilder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void PassManagerBuilder::populateModulePassManager(PassManagerBase &MPM) {
188188
MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
189189
MPM.add(createLoopDeletionPass()); // Delete dead loops
190190

191-
if (LoopVectorize && OptLevel > 1)
191+
if (true && OptLevel > 1)
192192
MPM.add(createLoopVectorizePass());
193193

194194
if (!DisableUnrollLoops)

0 commit comments

Comments
 (0)