summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gccas
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-20 05:26:22 +0000
committerChris Lattner <sabre@nondot.org>2003-09-20 05:26:22 +0000
commit25963c85e38fca20cac4bdfc63f12ef5f704e3d5 (patch)
tree101b1022424f7972a0c9b574700ecc7495ae73ca /llvm/tools/gccas
parentb6ac976247fc287e58ebf922753fc4e18e560b4b (diff)
downloadbcm5719-llvm-25963c85e38fca20cac4bdfc63f12ef5f704e3d5.tar.gz
bcm5719-llvm-25963c85e38fca20cac4bdfc63f12ef5f704e3d5.zip
Now that the TCE pass passes all of the tests, add it to GCCAS
llvm-svn: 8621
Diffstat (limited to 'llvm/tools/gccas')
-rw-r--r--llvm/tools/gccas/gccas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/gccas/gccas.cpp b/llvm/tools/gccas/gccas.cpp
index 27ae11c6c43..0f22480de84 100644
--- a/llvm/tools/gccas/gccas.cpp
+++ b/llvm/tools/gccas/gccas.cpp
@@ -57,9 +57,9 @@ 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, createTailCallEliminationPass()); // Eliminate tail calls
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
-
addPass(PM, createReassociatePass()); // Reassociate expressions
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
OpenPOWER on IntegriCloud