aboutsummaryrefslogtreecommitdiff
path: root/llvm/include/llvm-c/ExecutionEngine.h
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2009-06-24 21:09:18 +0000
committerBob Wilson <bob.wilson@apple.com>2009-06-24 21:09:18 +0000
commita1d3e660aef0ad88553c1d9ded5fb672a8427f89 (patch)
treeaf2eb14e04ab60f44f0a82c6cede397d3d72747f /llvm/include/llvm-c/ExecutionEngine.h
parentc3aff2c3fae52960af8f780097bf351126bef2b1 (diff)
downloadllvm-a1d3e660aef0ad88553c1d9ded5fb672a8427f89.zip
llvm-a1d3e660aef0ad88553c1d9ded5fb672a8427f89.tar.gz
llvm-a1d3e660aef0ad88553c1d9ded5fb672a8427f89.tar.bz2
Fix the Ocaml bindings for the ExecutionEngine: with the change to build
libraries instead of relinked objects, the interpreter, JIT, and native target libraries were not being linked in to an ocaml program using the ExecutionEngine. llvm-svn: 74117
Diffstat (limited to 'llvm/include/llvm-c/ExecutionEngine.h')
-rw-r--r--llvm/include/llvm-c/ExecutionEngine.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/ExecutionEngine.h b/llvm/include/llvm-c/ExecutionEngine.h
index a31dc82..9877b8d 100644
--- a/llvm/include/llvm-c/ExecutionEngine.h
+++ b/llvm/include/llvm-c/ExecutionEngine.h
@@ -26,6 +26,9 @@
extern "C" {
#endif
+void LLVMLinkInJIT(void);
+void LLVMLinkInInterpreter(void);
+
typedef struct LLVMOpaqueGenericValue *LLVMGenericValueRef;
typedef struct LLVMOpaqueExecutionEngine *LLVMExecutionEngineRef;