diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-11 16:46:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-11 16:46:10 +0000 |
commit | b3e8fe422174f680446a2fdf339dd19a94b2df1d (patch) | |
tree | 9a299d291cfc5e8446eaf86b242d8aa735cd56f5 /tools/gccas/gccas.cpp | |
parent | 38aec325604635380421a27e39ab06d55ed2458d (diff) |
scalarrepl now includes mem2reg
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccas/gccas.cpp')
-rw-r--r-- | tools/gccas/gccas.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 5ba382eaa9..8a42dc94d4 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 |