Change sroa threshold back.

llvm-svn: 39980
This commit is contained in:
Evan Cheng 2007-07-17 20:07:21 +00:00
parent f9ef70560e
commit bd9b21f1c5
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ void AddStandardCompilePasses(PassManager &PM) {
addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
// FIXME: Temporary!
addPass(PM, createScalarReplAggregatesPass(512)); // Break up aggregate allocas
addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
addPass(PM, createCondPropagationPass()); // Propagate conditionals