1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

Enable the loop vectorizer by default.

llvm-svn: 170246
This commit is contained in:
Nadav Rotem 2012-12-14 21:30:23 +00:00
parent 92f9e3ce2c
commit 80850ab50b

View File

@ -188,7 +188,7 @@ void PassManagerBuilder::populateModulePassManager(PassManagerBase &MPM) {
MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
MPM.add(createLoopDeletionPass()); // Delete dead loops
if (LoopVectorize && OptLevel > 1)
if (true && OptLevel > 1)
MPM.add(createLoopVectorizePass());
if (!DisableUnrollLoops)