aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-09-03 20:24:05 +0000
committerDevang Patel <dpatel@apple.com>2008-09-03 20:24:05 +0000
commit3d566ddd05120d1ff85eb4f93283e0e85366fa82 (patch)
treed4d8bc040e044d74ccacb6b12eb047fbcb79eb17 /include/llvm/Transforms
parent79cca4f49f8a29f7c1259ad12a068a51d666cb60 (diff)
downloadexternal_llvm-3d566ddd05120d1ff85eb4f93283e0e85366fa82.zip
external_llvm-3d566ddd05120d1ff85eb4f93283e0e85366fa82.tar.gz
external_llvm-3d566ddd05120d1ff85eb4f93283e0e85366fa82.tar.bz2
Add missing decls.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55719 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Transforms')
-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 72d9d60..5eeea8b 100644
--- a/include/llvm/Transforms/IPO.h
+++ b/include/llvm/Transforms/IPO.h
@@ -95,6 +95,11 @@ Pass *createFunctionInliningPass();
Pass *createFunctionInliningPass(int Threshold);
//===----------------------------------------------------------------------===//
+/// createAlwaysInlinerPass - Return a new pass object that inlines only
+/// functions that are marked as "always_inline".
+Pass *createAlwaysInlinerPass();
+
+//===----------------------------------------------------------------------===//
/// createPruneEHPass - Return a new pass object which transforms invoke
/// instructions into calls, if the callee can _not_ unwind the stack.
///