diff options
| author | Bob Wilson <bob.wilson@apple.com> | 2009-06-24 21:09:18 +0000 |
|---|---|---|
| committer | Bob Wilson <bob.wilson@apple.com> | 2009-06-24 21:09:18 +0000 |
| commit | a1d3e660aef0ad88553c1d9ded5fb672a8427f89 (patch) | |
| tree | af2eb14e04ab60f44f0a82c6cede397d3d72747f /llvm/include/llvm-c | |
| parent | c3aff2c3fae52960af8f780097bf351126bef2b1 (diff) | |
| download | bcm5719-llvm-a1d3e660aef0ad88553c1d9ded5fb672a8427f89.tar.gz bcm5719-llvm-a1d3e660aef0ad88553c1d9ded5fb672a8427f89.zip | |
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')
| -rw-r--r-- | llvm/include/llvm-c/ExecutionEngine.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/ExecutionEngine.h b/llvm/include/llvm-c/ExecutionEngine.h index a31dc8246a3..9877b8d5095 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; |

