mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-29 10:25:12 +00:00
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
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user