From 3d72290ecb30002d4372b6afbeda73812221ac3e Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 26 Jul 2011 15:23:23 +0000 Subject: Add LLVMAddAlwaysInlinerPass to the C API. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136083 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm-c/Transforms/IPO.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/llvm-c') diff --git a/include/llvm-c/Transforms/IPO.h b/include/llvm-c/Transforms/IPO.h index 7b5138f..b6397d1 100644 --- a/include/llvm-c/Transforms/IPO.h +++ b/include/llvm-c/Transforms/IPO.h @@ -36,6 +36,9 @@ void LLVMAddFunctionAttrsPass(LLVMPassManagerRef PM); /** See llvm::createFunctionInliningPass function. */ void LLVMAddFunctionInliningPass(LLVMPassManagerRef PM); +/** See llvm::createAlwaysInlinerPass function. */ +void LLVMAddAlwaysInlinerPass(LLVMPassManagerRef PM); + /** See llvm::createGlobalDCEPass function. */ void LLVMAddGlobalDCEPass(LLVMPassManagerRef PM); -- cgit v1.1