diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-29 06:25:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-29 06:25:11 +0000 |
commit | 0b77be8f0f56cfcd1d6c39760151caf34f96029a (patch) | |
tree | 787b1eb8abd196cbce7fdb11b9f396bbda702441 /tools/gccas/gccas.cpp | |
parent | 8a44643d613c5f01209ac147d7fc9432b0ced901 (diff) |
there is no reason to run -instcombine -instcombine!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20915 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 1626afed62..1192d6a366 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -103,7 +103,6 @@ void AddConfiguredTransformationPasses(PassManager &PM) { addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas addPass(PM, createInstructionCombiningPass()); // Combine silly seq's - addPass(PM, createInstructionCombiningPass()); // Combine silly seq's addPass(PM, createTailCallEliminationPass()); // Eliminate tail calls addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs addPass(PM, createLICMPass()); // Hoist loop invariants |