aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-04-25 02:54:00 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-04-25 02:54:00 +0000
commitbb3d5d246b10da27858837285fba012f0c14671f (patch)
treeea98bfd3a77b425f993e29d17e798e942831a6b8 /include/llvm/Transforms
parenta7c049bf6a7b5c7982ff87e9ff72bec02c733ebf (diff)
downloadexternal_llvm-bb3d5d246b10da27858837285fba012f0c14671f.zip
external_llvm-bb3d5d246b10da27858837285fba012f0c14671f.tar.gz
external_llvm-bb3d5d246b10da27858837285fba012f0c14671f.tar.bz2
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
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/IPO.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h
index 7e72cf9..62cdf3e 100644
--- a/include/llvm/Transforms/IPO.h
+++ b/include/llvm/Transforms/IPO.h
@@ -163,6 +163,10 @@ FunctionPass *createSingleLoopExtractorPass();
//
ModulePass *createBlockExtractorPass(std::vector<BasicBlock*> &BTNE);
+// createOptimizeWellKnownCallsPass - This pass optimizes specific calls to
+// specific well-known (library) functions.
+ModulePass *createSimplifyLibCallsPass();
+
} // End llvm namespace
#endif