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

scalarrepl now includes mem2reg

llvm-svn: 8472
This commit is contained in:
Chris Lattner 2003-09-11 16:46:10 +00:00
parent 8a901c4d27
commit 427bf36a96

View File

@ -56,7 +56,6 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
addPass(PM, createTailDuplicationPass()); // Simplify cfg by copying code
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's