diff options
Diffstat (limited to 'src/wasm/wasm-binary.cpp')
-rw-r--r-- | src/wasm/wasm-binary.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wasm/wasm-binary.cpp b/src/wasm/wasm-binary.cpp index 4ca434bdf..b7a04a324 100644 --- a/src/wasm/wasm-binary.cpp +++ b/src/wasm/wasm-binary.cpp @@ -5850,27 +5850,27 @@ bool WasmBinaryBuilder::maybeVisitSIMDLoad(Expression*& out, uint32_t code) { break; case BinaryConsts::V128Load8x8S: curr = allocator.alloc<SIMDLoad>(); - curr->op = LoadExtSVec8x8ToVecI16x8; + curr->op = Load8x8SVec128; break; case BinaryConsts::V128Load8x8U: curr = allocator.alloc<SIMDLoad>(); - curr->op = LoadExtUVec8x8ToVecI16x8; + curr->op = Load8x8UVec128; break; case BinaryConsts::V128Load16x4S: curr = allocator.alloc<SIMDLoad>(); - curr->op = LoadExtSVec16x4ToVecI32x4; + curr->op = Load16x4SVec128; break; case BinaryConsts::V128Load16x4U: curr = allocator.alloc<SIMDLoad>(); - curr->op = LoadExtUVec16x4ToVecI32x4; + curr->op = Load16x4UVec128; break; case BinaryConsts::V128Load32x2S: curr = allocator.alloc<SIMDLoad>(); - curr->op = LoadExtSVec32x2ToVecI64x2; + curr->op = Load32x2SVec128; break; case BinaryConsts::V128Load32x2U: curr = allocator.alloc<SIMDLoad>(); - curr->op = LoadExtUVec32x2ToVecI64x2; + curr->op = Load32x2UVec128; break; case BinaryConsts::V128Load32Zero: curr = allocator.alloc<SIMDLoad>(); |