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-binary.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/wasm-binary.h') diff --git a/src/wasm-binary.h b/src/wasm-binary.h index 3cbc1cc6b..8de833a79 100644 --- a/src/wasm-binary.h +++ b/src/wasm-binary.h @@ -782,6 +782,7 @@ enum ASTNodes { V128And = 0x4d, V128Or = 0x4e, V128Xor = 0x4f, + V128AndNot = 0xd8, V128Bitselect = 0x50, I8x16Neg = 0x51, I8x16AnyTrue = 0x52, -- cgit v1.2.3