Change sroa threshold back.
authorEvan Cheng <evan.cheng@apple.com>
Tue, 17 Jul 2007 20:07:21 +0000 (20:07 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Tue, 17 Jul 2007 20:07:21 +0000 (20:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39980 91177308-0d34-0410-b5e6-96231b3b80d8

tools/opt/opt.cpp

index 64b554cea4a40ccc455ef23f69997c83c7c8bf59..fc71074fb86c5fced9ca641da7c43fe2a6b1f6cb 100644 (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