summaryrefslogtreecommitdiff
path: root/include/llvm-c/Core.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-10 17:52:58 +0000
committerChris Lattner <sabre@nondot.org>2010-04-10 17:52:58 +0000
commit0941534c712d77243d9dda5e8c1d927563b4edff (patch)
tree5c1416481e188562f2f29a8b1613605828308284 /include/llvm-c/Core.h
parent35a3d3f8cd935817b0fead23dc250706cbb2b071 (diff)
downloadllvm-0941534c712d77243d9dda5e8c1d927563b4edff.tar.gz
llvm-0941534c712d77243d9dda5e8c1d927563b4edff.tar.bz2
llvm-0941534c712d77243d9dda5e8c1d927563b4edff.tar.xz
add attributes and module level asm to the ocaml bindings,
patch by Patrick Walton! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Core.h')
-rw-r--r--include/llvm-c/Core.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 733b92c57c..d665c89377 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -319,6 +319,8 @@ LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name);
/** See Module::dump. */
void LLVMDumpModule(LLVMModuleRef M);
+/** See Module::setModuleInlineAsm. */
+void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm);
/*===-- Types -------------------------------------------------------------===*/