diff options
-rw-r--r-- | llvm/include/llvm-c/lto.h | 2 | ||||
-rw-r--r-- | llvm/tools/lto/LTOModule.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm-c/lto.h b/llvm/include/llvm-c/lto.h index 74a070342e9..1d9881425e5 100644 --- a/llvm/include/llvm-c/lto.h +++ b/llvm/include/llvm-c/lto.h @@ -86,7 +86,7 @@ lto_module_is_object_file(const char* path); */ extern bool lto_module_is_object_file_for_target(const char* path, - const char* target_triple_prefix); + const char* target_triple_prefix); /** diff --git a/llvm/tools/lto/LTOModule.cpp b/llvm/tools/lto/LTOModule.cpp index 6331a59e02d..71f3850e525 100644 --- a/llvm/tools/lto/LTOModule.cpp +++ b/llvm/tools/lto/LTOModule.cpp @@ -108,7 +108,7 @@ MemoryBuffer* LTOModule::makeBuffer(const void* mem, size_t length) LTOModule* LTOModule::makeLTOModule(const void* mem, size_t length, - std::string& errMsg) + std::string& errMsg) { OwningPtr<MemoryBuffer> buffer(makeBuffer(mem, length)); if ( !buffer ) |