From 806824b23c28d2d81ffd588c555be82fa5a14004 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Sun, 9 Nov 2025 20:04:47 +0100 Subject: Add i32.lt_u --- 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 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 */ -- cgit v1.2.3