From 015c7edfa0e0460b7978fcfd724699af8fb6ec21 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sun, 9 Nov 2025 20:03:57 +0100 Subject: Add i32.shl --- src/interp/ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interp') 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 */ -- cgit v1.2.3