diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-05-03 14:59:52 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-05-03 14:59:52 +0000 |
commit | 83ceb8edfbe7cef86ab3bca90632fe7cd0ace711 (patch) | |
tree | aca36c27abc6d13d578dad966cb1fbafad67724e /llvm/include/llvm-c | |
parent | 9d4f24a34b242b623d888fd45b428d22356a91c5 (diff) | |
download | bcm5719-llvm-83ceb8edfbe7cef86ab3bca90632fe7cd0ace711.tar.gz bcm5719-llvm-83ceb8edfbe7cef86ab3bca90632fe7cd0ace711.zip |
Move LTOModule and LTOCodeGenerator to the llvm namespace.
llvm-svn: 207911
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/lto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm-c/lto.h b/llvm/include/llvm-c/lto.h index 84e22b32e0c..51079896d7f 100644 --- a/llvm/include/llvm-c/lto.h +++ b/llvm/include/llvm-c/lto.h @@ -84,10 +84,10 @@ typedef enum { } lto_codegen_model; /** opaque reference to a loaded object module */ -typedef struct LTOModule* lto_module_t; +typedef struct LLVMOpaqueLTOModule *lto_module_t; /** opaque reference to a code generator */ -typedef struct LTOCodeGenerator* lto_code_gen_t; +typedef struct LLVMOpaqueLTOCodeGenerator *lto_code_gen_t; #ifdef __cplusplus extern "C" { |