diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-25 04:06:10 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-10-25 04:06:10 +0000 |
commit | 72478e59c7dfb01870a8f6b5ae6c7e1fb18719c3 (patch) | |
tree | 70c6240aa1202a26a1f6a312833e645c295dd791 /tools/lto | |
parent | 1d1d705a95e4a93137382e950ea1d34767d0b9f0 (diff) |
Update the error handling of lib/Linker.
Instead of passing a std::string&, use the new diagnostic infrastructure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220608 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lto')
-rw-r--r-- | tools/lto/lto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lto/lto.cpp b/tools/lto/lto.cpp index 5732996a160..3389425915d 100644 --- a/tools/lto/lto.cpp +++ b/tools/lto/lto.cpp @@ -205,7 +205,7 @@ lto_code_gen_t lto_codegen_create(void) { void lto_codegen_dispose(lto_code_gen_t cg) { delete unwrap(cg); } bool lto_codegen_add_module(lto_code_gen_t cg, lto_module_t mod) { - return !unwrap(cg)->addModule(unwrap(mod), sLastErrorString); + return !unwrap(cg)->addModule(unwrap(mod)); } bool lto_codegen_set_debug_model(lto_code_gen_t cg, lto_debug_model debug) { |