aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-11-09 20:04:47 +0100
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-09 20:04:47 +0100
commit806824b23c28d2d81ffd588c555be82fa5a14004 (patch)
treea6e86a595f9f9b374973a8f0a45ded8a62ee1bab /src/interp
parent015c7edfa0e0460b7978fcfd724699af8fb6ec21 (diff)
downloadnanowasm-806824b23c28d2d81ffd588c555be82fa5a14004.tar.gz
Add i32.lt_u
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 871b07e..de69126 100644
--- a/src/interp/ops.c
+++ b/src/interp/ops.c
@@ -87,7 +87,7 @@ static void (*const ops[])(struct nw_interp *) =
nwp_op_i32_eq, /* OP_I32_EQ */
nwp_op_i32_ne, /* OP_I32_NE */
nwp_op_i32_lt_s, /* OP_I32_LT_S */
- NULL, /* OP_I32_LT_U */
+ nwp_op_i32_lt_u, /* OP_I32_LT_U */
NULL, /* OP_I32_GT_S */
NULL, /* OP_I32_GT_U */
NULL, /* OP_I32_LE_S */