diff --git a/lib/llvm-backend/src/read_info.rs b/lib/llvm-backend/src/read_info.rs index de1134903..fa5c017d3 100644 --- a/lib/llvm-backend/src/read_info.rs +++ b/lib/llvm-backend/src/read_info.rs @@ -24,10 +24,11 @@ pub fn type_to_type(ty: WpType) -> Result { pub fn blocktype_to_type(ty: WpTypeOrFuncType) -> Result { match ty { - WpTypeOrFuncType::Type(inner_ty) => { type_to_type(inner_ty) } + WpTypeOrFuncType::Type(inner_ty) => type_to_type(inner_ty), _ => { return Err(BinaryReaderError { - message: "the wasmer llvm backend does not yet support the multi-value return extension", + message: + "the wasmer llvm backend does not yet support the multi-value return extension", offset: -1isize as usize, }); }