From 034ed383a968204427befda3f9fb8bb5d2f63f75 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Tue, 24 Sep 2019 15:29:15 -0700 Subject: v128.andnot instruction (#2355) As specified at https://github.com/WebAssembly/simd/pull/102. Also fixes bugs in the JS API for other SIMD bitwise operators. --- src/wasm-interpreter.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/wasm-interpreter.h') diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index a128cf6e5..94a3f0d54 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -740,6 +740,8 @@ public: return left.orV128(right); case XorVec128: return left.xorV128(right); + case AndNotVec128: + return left.andV128(right.notV128()); case AddVecI8x16: return left.addI8x16(right); -- cgit v1.2.3