From ff1c9e21479fd50374515942bb4e45a7e66b5171 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Wed, 27 Apr 2005 02:22:47 +0000 Subject: [PATCH] Add the simplify-libcalls pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21585 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 896b79a0220..fae4ddb205a 100644 --- a/tools/gccas/gccas.cpp +++ b/tools/gccas/gccas.cpp @@ -95,6 +95,7 @@ void AddConfiguredTransformationPasses(PassManager &PM) { if (!DisableInline) addPass(PM, createFunctionInliningPass()); // Inline small functions + addPass(PM, createSimplifyLibCallsPass()); // Library Call Optimizations addPass(PM, createArgumentPromotionPass()); // Scalarize uninlined fn args addPass(PM, createRaisePointerReferencesPass());// Recover type information -- 2.34.1