From fc7346918f8d15ce45639472f00fea5fa8102ff0 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Tue, 19 May 2020 10:17:07 -0700 Subject: Implement i64x2.mul (#2860) This is the only instruction in the current spec proposal that had not yet been implemnented in the tools. --- src/wasm/wasm-validator.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/wasm/wasm-validator.cpp') diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp index f5e134dba..606cb47a8 100644 --- a/src/wasm/wasm-validator.cpp +++ b/src/wasm/wasm-validator.cpp @@ -1449,6 +1449,7 @@ void FunctionValidator::visitBinary(Binary* curr) { case DotSVecI16x8ToVecI32x4: case AddVecI64x2: case SubVecI64x2: + case MulVecI64x2: case AddVecF32x4: case SubVecF32x4: case MulVecF32x4: -- cgit v1.2.3