Skip to content

Commit b28592d

Browse files
committed
WIP: stop on hit
Signed-off-by: Máté Tokodi [email protected]
1 parent 685b55f commit b28592d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/jit/SimdArm64Inl.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ static void simdEmitDot(sljit_compiler* compiler, uint32_t type, sljit_s32 rd, s
623623
simdEmitOp(compiler, SimdOp::xtn | type, rd, tmpReg1, 0);
624624
simdEmitOp(compiler, SimdOp::xtn | type | (0x1 << 30), rd, tmpReg2, 0);
625625
#endif
626+
ASSERT_NOT_REACHED();
626627
}
627628

628629
static void emitBinarySIMD(sljit_compiler* compiler, Instruction* instr)

test/wasm-spec/core/simd/simd_i32x4_dot_i16x8.wast

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77

88

99
;; i32x4.dot_i16x8_s
10-
(assert_return (invoke "i32x4.dot_i16x8_s" (v128.const i16x8 0 0 0 0 0 0 0 0)
11-
(v128.const i16x8 0 0 0 0 0 0 0 0))
12-
(v128.const i32x4 0 0 0 0))
13-
(assert_return (invoke "i32x4.dot_i16x8_s" (v128.const i16x8 0 0 0 0 0 0 0 0)
14-
(v128.const i16x8 1 1 1 1 1 1 1 1))
15-
(v128.const i32x4 0 0 0 0))
10+
;;(assert_return (invoke "i32x4.dot_i16x8_s" (v128.const i16x8 0 0 0 0 0 0 0 0)
11+
;; (v128.const i16x8 0 0 0 0 0 0 0 0))
12+
;; (v128.const i32x4 0 0 0 0))
13+
;;(assert_return (invoke "i32x4.dot_i16x8_s" (v128.const i16x8 0 0 0 0 0 0 0 0)
14+
;; (v128.const i16x8 1 1 1 1 1 1 1 1))
15+
;; (v128.const i32x4 0 0 0 0))
1616
(assert_return (invoke "i32x4.dot_i16x8_s" (v128.const i16x8 1 1 1 1 1 1 1 1)
1717
(v128.const i16x8 1 1 1 1 1 1 1 1))
1818
(v128.const i32x4 2 2 2 2))

0 commit comments

Comments
 (0)