summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h2
1 files changed, 2 insertions, 0 deletions
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);