fixed no error on missing driver
This commit is contained in:
parent
09b3b86180
commit
b08b04ebf9
|
@ -95,10 +95,10 @@ TargetLinkConfig* lld_create_link_config(__attribute__((unused)) const Target* t
|
|||
BackendError lld_link_target(TargetLinkConfig* config) {
|
||||
|
||||
if (link_run(config)) {
|
||||
return new_backend_impl_error(Implementation, NULL, "linking failed");
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
return SUCCESS;
|
||||
return new_backend_impl_error(Implementation, NULL, "linking failed");
|
||||
}
|
||||
|
||||
void lld_delete_link_config(TargetLinkConfig* config) {
|
||||
|
|
|
@ -260,7 +260,7 @@ BackendError parse_module(const Module* module, const TargetConfig* config) {
|
|||
TargetLinkConfig* link_config = lld_create_link_config(&target, config, module);
|
||||
|
||||
if (link_config != NULL) {
|
||||
lld_link_target(link_config);
|
||||
err = lld_link_target(link_config);
|
||||
|
||||
lld_delete_link_config(link_config);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue