summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms/IPO.h
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-01-08 17:21:40 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-01-08 17:21:40 +0000
commitbf65268def058af3e1d35aba233d5f0fd5a80fce (patch)
treecf66144272a7f92e35ddc38263646c7f9e43560a /include/llvm/Transforms/IPO.h
parentae0aacb8331e1227abea6601e531a10d0e65fdca (diff)
downloadllvm-bf65268def058af3e1d35aba233d5f0fd5a80fce.tar.gz
llvm-bf65268def058af3e1d35aba233d5f0fd5a80fce.tar.bz2
llvm-bf65268def058af3e1d35aba233d5f0fd5a80fce.tar.xz
Add more missing createXxxPass functions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms/IPO.h')
-rw-r--r--include/llvm/Transforms/IPO.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h
index 77f63f5c8d..d2371de517 100644
--- a/include/llvm/Transforms/IPO.h
+++ b/include/llvm/Transforms/IPO.h
@@ -147,6 +147,11 @@ ModulePass *createIPSCCPPass();
//===----------------------------------------------------------------------===//
//
+/// createLoopExtractorPass - This pass extracts all natural loops from the
+/// program into a function if it can.
+///
+ModulePass *createLoopExtractorPass();
+
/// createSingleLoopExtractorPass - This pass extracts one natural loop from the
/// program into a function if it can. This is used by bugpoint.
///