summaryrefslogtreecommitdiff
path: root/include/llvm-c/ExecutionEngine.h
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2008-08-08 20:49:28 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2008-08-08 20:49:28 +0000
commitc13c4d6a1bbc91a9e3bb9f964f32f3a999071070 (patch)
tree5e46cae5df29d42da7ed3d9f647039ddf7b5ed34 /include/llvm-c/ExecutionEngine.h
parent7a61d701c0870642e075e90b6a1ad03a8ac9bc67 (diff)
downloadllvm-c13c4d6a1bbc91a9e3bb9f964f32f3a999071070.tar.gz
llvm-c13c4d6a1bbc91a9e3bb9f964f32f3a999071070.tar.bz2
llvm-c13c4d6a1bbc91a9e3bb9f964f32f3a999071070.tar.xz
Fix the LLVMCreateJITCompiler C binding.
Evan broke it in r54523 by adding a parameter in the implementation without updating the header correspondingly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54555 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/ExecutionEngine.h')
-rw-r--r--include/llvm-c/ExecutionEngine.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm-c/ExecutionEngine.h b/include/llvm-c/ExecutionEngine.h
index 8664f1fe9a..d138d072c6 100644
--- a/include/llvm-c/ExecutionEngine.h
+++ b/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);