core: Move bitcode verification error message into panic message

pull/322/head
David Mak 2023-09-19 12:38:35 +08:00
parent dd42022633
commit fc93fc2f0e
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();