core: Move bitcode verification error message into panic message

pull/324/head
David Mak 2023-09-19 12:38:35 +08:00
parent 806f65815f
commit 8bef0ab8f2
1 changed files with 1 additions and 2 deletions

View File

@ -319,8 +319,7 @@ impl WorkerRegistry {
let result = module.verify();
if let Err(err) = result {
println!("{}", module.print_to_string().to_str().unwrap());
println!("{}", err.to_string());
panic!()
panic!("{}", err.to_string())
}
let pass_options = PassBuilderOptions::create();