diff options
author | Peter Zotov <whitequark@whitequark.org> | 2016-04-05 13:56:59 +0000 |
---|---|---|
committer | Peter Zotov <whitequark@whitequark.org> | 2016-04-05 13:56:59 +0000 |
commit | 0a2fa0a13b83405ef3a524e5cc543937e3b1809b (patch) | |
tree | 39021838b6261853b1a806778d238524e8d63ac3 /llvm/include/llvm-c | |
parent | 57c5f0b1c44754a6a07bd70be49e4c4beb878b67 (diff) | |
download | bcm5719-llvm-0a2fa0a13b83405ef3a524e5cc543937e3b1809b.tar.gz bcm5719-llvm-0a2fa0a13b83405ef3a524e5cc543937e3b1809b.zip |
[llvm-c] Expose LLVM{Get,Set}ModuleIdentifier
Patch by Nicole Mazzuca <npmazzuca@gmail.com>.
Differential Revision: http://reviews.llvm.org/D18736
llvm-svn: 265394
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 20c5df3e787..8e70c872a29 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -481,6 +481,26 @@ LLVMModuleRef LLVMCloneModule(LLVMModuleRef M); void LLVMDisposeModule(LLVMModuleRef M); /** + * Obtain the identifier of a module. + * + * @param M Module to obtain identifier of + * @param Len Out parameter which holds the length of the returned string. + * @return The identifier of M. + * @see Module::getModuleIdentifier() + */ +const char *LLVMGetModuleIdentifier(LLVMModuleRef M, size_t *Len); + +/** + * Set the identifier of a module to a string Ident with length Len. + * + * @param M The module to set identifier + * @param Ident The string to set M's identifier to + * @param Len Length of Ident + * @see Module::setModuleIdentifier() + */ +void LLVMSetModuleIdentifier(LLVMModuleRef M, const char *Ident, size_t Len); + +/** * Obtain the data layout for a module. * * @see Module::getDataLayoutStr() |