Update to wasmparser 0.32.1.

This commit is contained in:
Dan Gohman
2019-07-02 11:54:31 -07:00
parent 4b924d34b6
commit f163050c9a
2 changed files with 4 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ keywords = ["webassembly", "wasm"]
edition = "2018"
[dependencies]
wasmparser = { version = "0.31.0", default-features = false }
wasmparser = { version = "0.32.1", default-features = false }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0", default-features = false }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.31.0", default-features = false }

View File

@@ -1047,7 +1047,9 @@ pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
| Operator::F32x4ConvertSI32x4
| Operator::F32x4ConvertUI32x4
| Operator::F64x2ConvertSI64x2
| Operator::F64x2ConvertUI64x2 => {
| Operator::F64x2ConvertUI64x2
| Operator::V8x16Shuffle1
| Operator::V8x16Shuffle2Imm { .. } => {
return Err(WasmError::Unsupported("proposed SIMD operators"));
}
};