mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-23 20:34:58 +00:00
Temporarily set SROA threshold to 512.
llvm-svn: 39950
This commit is contained in:
parent
55b794723f
commit
49c8647315
@ -267,7 +267,8 @@ void AddStandardCompilePasses(PassManager &PM) {
|
||||
addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
|
||||
addPass(PM, createInstructionCombiningPass()); // Cleanup for scalarrepl.
|
||||
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
||||
addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
|
||||
// FIXME: Temporary!
|
||||
addPass(PM, createScalarReplAggregatesPass(512)); // Break up aggregate allocas
|
||||
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
|
||||
addPass(PM, createCondPropagationPass()); // Propagate conditionals
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user