From a93d19fff7e53d48bbdb74b85ca5dc23f00855a8 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 25 Feb 2004 21:35:02 +0000 Subject: Add a new pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11838 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gccas/gccas.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gccas/gccas.cpp b/tools/gccas/gccas.cpp index 7b5018a..e04b2b5 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -68,6 +68,7 @@ void AddConfiguredTransformationPasses(PassManager &PM) { addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst addPass(PM, createCFGSimplificationPass()); // Clean up disgusting code addPass(PM, createPromoteMemoryToRegister()); // Kill useless allocas + addPass(PM, createGlobalConstifierPass()); // Mark read-only globals const addPass(PM, createGlobalDCEPass()); // Remove unused globals addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation addPass(PM, createDeadArgEliminationPass()); // Dead argument elimination -- cgit v1.1