Update to latest versions of term, capstone, wabt, goblin, wasmparser.

This commit is contained in:
Dan Gohman
2019-08-20 14:12:09 -07:00
parent b4ef90cfcd
commit 0c2c597852
7 changed files with 20 additions and 16 deletions

View File

@@ -11,7 +11,7 @@ keywords = ["webassembly", "wasm"]
edition = "2018"
[dependencies]
wasmparser = { version = "0.32.1", default-features = false }
wasmparser = { version = "0.36.0", default-features = false }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.38.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.38.0", default-features = false }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.38.0", default-features = false }
@@ -22,7 +22,7 @@ log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true }
[dev-dependencies]
wabt = "0.7.0"
wabt = "0.9.1"
target-lexicon = "0.4.0"
[features]

View File

@@ -905,7 +905,8 @@ pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
| Operator::I32AtomicRmw16UCmpxchg { .. }
| Operator::I64AtomicRmw8UCmpxchg { .. }
| Operator::I64AtomicRmw16UCmpxchg { .. }
| Operator::I64AtomicRmw32UCmpxchg { .. } => {
| Operator::I64AtomicRmw32UCmpxchg { .. }
| Operator::Fence { .. } => {
wasm_unsupported!("proposed thread operator {:?}", op);
}
Operator::MemoryInit { .. }
@@ -1060,9 +1061,12 @@ pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
| Operator::F32x4ConvertSI32x4
| Operator::F32x4ConvertUI32x4
| Operator::F64x2ConvertSI64x2
| Operator::F64x2ConvertUI64x2
| Operator::V8x16Shuffle1
| Operator::V8x16Shuffle2Imm { .. } => {
| Operator::F64x2ConvertUI64x2 { .. }
| Operator::V8x16Swizzle
| Operator::I8x16LoadSplat { .. }
| Operator::I16x8LoadSplat { .. }
| Operator::I32x4LoadSplat { .. }
| Operator::I64x2LoadSplat { .. } => {
wasm_unsupported!("proposed SIMD operator {:?}", op);
}
};