aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-11-09 20:03:57 +0100
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-09 20:03:57 +0100
commit015c7edfa0e0460b7978fcfd724699af8fb6ec21 (patch)
tree1b52152e796aae0c239fdaad2552ee94e923f5fa /src/interp
parent18f901125ad1b97ee3f79cb2f5d87704b52191ee (diff)
downloadnanowasm-015c7edfa0e0460b7978fcfd724699af8fb6ec21.tar.gz
Add i32.shl
Diffstat (limited to 'src/interp')
-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 6a5f82e..871b07e 100644
--- a/src/interp/ops.c
+++ b/src/interp/ops.c
@@ -130,7 +130,7 @@ static void (*const ops[])(struct nw_interp *) =
nwp_op_i32_and, /* OP_I32_AND */
nwp_op_i32_or, /* OP_I32_OR */
NULL, /* OP_I32_XOR */
- NULL, /* OP_I32_SHL */
+ nwp_op_i32_shl, /* OP_I32_SHL */
NULL, /* OP_I32_SHR_S */
NULL, /* OP_I32_SHR_U */
NULL, /* OP_I32_ROTL */