From b3e8fe422174f680446a2fdf339dd19a94b2df1d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 11 Sep 2003 16:46:10 +0000 Subject: [PATCH] scalarrepl now includes mem2reg git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8472 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gccas/gccas.cpp | 1 - 1 file changed, 1 deletion(-) 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 -- 2.34.1