Fix the ocaml bindings.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215117 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2014-08-07 14:48:13 +00:00
parent 7b232e2bb6
commit 069468bfb9
3 changed files with 2 additions and 3 deletions

View File

@ -13,7 +13,7 @@
LEVEL := ../../.. LEVEL := ../../..
LIBRARYNAME := llvm_executionengine LIBRARYNAME := llvm_executionengine
UsedComponents := executionengine jit interpreter native UsedComponents := executionengine mcjit interpreter native
UsedOcamlInterfaces := llvm llvm_target UsedOcamlInterfaces := llvm llvm_target
include ../Makefile.ocaml include ../Makefile.ocaml

View File

@ -27,7 +27,7 @@
/* Force the LLVM interpreter and JIT to be linked in. */ /* Force the LLVM interpreter and JIT to be linked in. */
void llvm_initialize(void) { void llvm_initialize(void) {
LLVMLinkInInterpreter(); LLVMLinkInInterpreter();
LLVMLinkInJIT(); LLVMLinkInMCJIT();
} }
/* unit -> bool */ /* unit -> bool */

View File

@ -34,7 +34,6 @@ extern "C" {
* @{ * @{
*/ */
void LLVMLinkInJIT(void);
void LLVMLinkInMCJIT(void); void LLVMLinkInMCJIT(void);
void LLVMLinkInInterpreter(void); void LLVMLinkInInterpreter(void);