diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-07-17 20:07:21 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-07-17 20:07:21 +0000 |
commit | 74b1e1424c0e4dd8f893d1cabd0854278bfcb25f (patch) | |
tree | 7c6bfef90195e571d0f75565dc67eddf542d6b58 /tools/opt/opt.cpp | |
parent | f99002c14303fe3f58f854bb77f9bcfbe7656b64 (diff) | |
download | external_llvm-74b1e1424c0e4dd8f893d1cabd0854278bfcb25f.zip external_llvm-74b1e1424c0e4dd8f893d1cabd0854278bfcb25f.tar.gz external_llvm-74b1e1424c0e4dd8f893d1cabd0854278bfcb25f.tar.bz2 |
Change sroa threshold back.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39980 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt/opt.cpp')
-rw-r--r-- | tools/opt/opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 64b554c..fc71074 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -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 |