From 0b77be8f0f56cfcd1d6c39760151caf34f96029a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 29 Mar 2005 06:25:11 +0000 Subject: [PATCH] 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 --- tools/gccas/gccas.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 1626afed62f..1192d6a366d 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