diff options
author | Filip Pizlo <fpizlo@apple.com> | 2013-05-22 02:46:43 +0000 |
---|---|---|
committer | Filip Pizlo <fpizlo@apple.com> | 2013-05-22 02:46:43 +0000 |
commit | 3fdbaff3b9750bbf326a99d21d3bd41309657d64 (patch) | |
tree | ee1dacb5605916b0a5bf514d444eb633234961c1 /llvm/include/llvm-c/Core.h | |
parent | cf1e6574c23a6f799ed7f312643b6fd34d4cf6fa (diff) | |
download | bcm5719-llvm-3fdbaff3b9750bbf326a99d21d3bd41309657d64.tar.gz bcm5719-llvm-3fdbaff3b9750bbf326a99d21d3bd41309657d64.zip |
Expose the RTDyldMemoryManager through the C API. This allows clients of
the C API to provide their own way of allocating JIT memory (both code
and data) and finalizing memory permissions (page protections, cache
flush).
llvm-svn: 182448
Diffstat (limited to 'llvm/include/llvm-c/Core.h')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 6b62f33261e..0920c5d0b0d 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -411,6 +411,7 @@ void LLVMShutdown(); /*===-- Error handling ----------------------------------------------------===*/ +char *LLVMCreateMessage(const char *Message); void LLVMDisposeMessage(char *Message); |