aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ops.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-11-15 18:53:32 +0100
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-15 18:53:32 +0100
commit4e4964c65700636e7411ea2d83b7f25ca4ad1377 (patch)
treedb2bdbbbdbf66e1ac4c5b22b6b87063927f9a8f0 /src/interp/ops.c
parent6c2108e6bd19ffa47b33f61501f25db47ddb4cfb (diff)
Add i32.xor
Diffstat (limited to 'src/interp/ops.c')
-rw-r--r--src/interp/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/ops.c b/src/interp/ops.c
index 7c0d911..d69140d 100644
--- a/src/interp/ops.c
+++ b/src/interp/ops.c
@@ -129,7 +129,7 @@ static void (*const ops[])(struct nw_interp *) =
NULL, /* OP_I32_REM_U */
nwp_op_i32_and, /* OP_I32_AND */
nwp_op_i32_or, /* OP_I32_OR */
- NULL, /* OP_I32_XOR */
+ nwp_op_i32_xor, /* OP_I32_XOR */
nwp_op_i32_shl, /* OP_I32_SHL */
nwp_op_i32_shr_s, /* OP_I32_SHR_S */
nwp_op_i32_shr_u, /* OP_I32_SHR_U */