Update wasmparser to 0.57.0

This commit is contained in:
Nick Fitzgerald
2020-05-22 15:29:51 -07:00
parent acf8ad0df7
commit 137e182750
10 changed files with 26 additions and 15 deletions

View File

@@ -1565,6 +1565,10 @@ pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
| Operator::I32x4WidenHighI16x8U { .. } => {
return Err(wasm_unsupported!("proposed SIMD operator {:?}", op));
}
Operator::ReturnCall { .. } | Operator::ReturnCallIndirect { .. } => {
return Err(wasm_unsupported!("proposed tail-call operator {:?}", op));
}
};
Ok(())
}