diff options
author | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-08-08 20:49:28 +0000 |
---|---|---|
committer | Gordon Henriksen <gordonhenriksen@mac.com> | 2008-08-08 20:49:28 +0000 |
commit | 5225cd66cf3ad9b3f914b8e6cba1268ab5def5f4 (patch) | |
tree | 917a8fd477b7345d5faf8e13ea4b4d55b94f1955 /llvm/include/llvm-c/ExecutionEngine.h | |
parent | 994c8e393daee8890bfe9c05930d05d414292dc8 (diff) | |
download | llvm-5225cd66cf3ad9b3f914b8e6cba1268ab5def5f4.zip llvm-5225cd66cf3ad9b3f914b8e6cba1268ab5def5f4.tar.gz llvm-5225cd66cf3ad9b3f914b8e6cba1268ab5def5f4.tar.bz2 |
Fix the LLVMCreateJITCompiler C binding.
Evan broke it in r54523 by adding a parameter in the implementation without
updating the header correspondingly.
llvm-svn: 54555
Diffstat (limited to 'llvm/include/llvm-c/ExecutionEngine.h')
-rw-r--r-- | llvm/include/llvm-c/ExecutionEngine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/ExecutionEngine.h b/llvm/include/llvm-c/ExecutionEngine.h index 8664f1f..d138d07 100644 --- a/llvm/include/llvm-c/ExecutionEngine.h +++ b/llvm/include/llvm-c/ExecutionEngine.h @@ -62,6 +62,7 @@ int LLVMCreateInterpreter(LLVMExecutionEngineRef *OutInterp, int LLVMCreateJITCompiler(LLVMExecutionEngineRef *OutJIT, LLVMModuleProviderRef MP, + int Fast, char **OutError); void LLVMDisposeExecutionEngine(LLVMExecutionEngineRef EE); |