mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
Throw error on failure in loading llvm-plugin
This commit is contained in:
parent
251831ece9
commit
693c6311f0
@ -800,7 +800,7 @@ LLVMRustOptimize(
|
||||
auto Plugin = PassPlugin::Load(PluginPath.str());
|
||||
if (!Plugin) {
|
||||
LLVMRustSetLastError(("Failed to load pass plugin" + PluginPath.str()).c_str());
|
||||
continue;
|
||||
return LLVMRustResult::Failure;
|
||||
}
|
||||
Plugin->registerPassBuilderCallbacks(PB);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user