summaryrefslogtreecommitdiff
path: root/include/llvm-c/ExecutionEngine.h
diff options
context:
space:
mode:
authorGordon Henriksen <gordonhenriksen@mac.com>2008-06-20 02:16:11 +0000
committerGordon Henriksen <gordonhenriksen@mac.com>2008-06-20 02:16:11 +0000
commit54227f6752befd3196e078b83e4c440ecaff2dd7 (patch)
treea50d0d7bd4ca15b91d48cb708e3b13923117e2a4 /include/llvm-c/ExecutionEngine.h
parentab8ec0a26caa754f0376dbdede3a33ad84f23e21 (diff)
downloadllvm-54227f6752befd3196e078b83e4c440ecaff2dd7.tar.gz
llvm-54227f6752befd3196e078b83e4c440ecaff2dd7.tar.bz2
llvm-54227f6752befd3196e078b83e4c440ecaff2dd7.tar.xz
Add C binding for ExecutionEngine::addGlobalMapping.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52523 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/ExecutionEngine.h')
-rw-r--r--include/llvm-c/ExecutionEngine.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm-c/ExecutionEngine.h b/include/llvm-c/ExecutionEngine.h
index b1d130c20f..8664f1fe9a 100644
--- a/include/llvm-c/ExecutionEngine.h
+++ b/include/llvm-c/ExecutionEngine.h
@@ -91,6 +91,9 @@ int LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
LLVMTargetDataRef LLVMGetExecutionEngineTargetData(LLVMExecutionEngineRef EE);
+void LLVMAddGlobalMapping(LLVMExecutionEngineRef EE, LLVMValueRef Global,
+ void* Addr);
+
#ifdef __cplusplus
}