From: Chris Lattner Date: Thu, 11 Sep 2003 16:46:10 +0000 (+0000) Subject: scalarrepl now includes mem2reg X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b3e8fe422174f680446a2fdf339dd19a94b2df1d;p=oota-llvm.git scalarrepl now includes mem2reg git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8472 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 5ba382eaa9e..8a42dc94d47 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -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