From: Reid Spencer Date: Mon, 25 Apr 2005 02:54:00 +0000 (+0000) Subject: Declare a function to create the SimplifyLibCalls pass. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bb3d5d246b10da27858837285fba012f0c14671f;p=oota-llvm.git Declare a function to create the SimplifyLibCalls pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21523 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h index 7e72cf9d28e..62cdf3ec436 100644 --- a/include/llvm/Transforms/IPO.h +++ b/include/llvm/Transforms/IPO.h @@ -163,6 +163,10 @@ FunctionPass *createSingleLoopExtractorPass(); // ModulePass *createBlockExtractorPass(std::vector &BTNE); +// createOptimizeWellKnownCallsPass - This pass optimizes specific calls to +// specific well-known (library) functions. +ModulePass *createSimplifyLibCallsPass(); + } // End llvm namespace #endif