From c33a13fba8a0674fcc2d835021cc37f6cfe3d8fa Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Thu, 6 Nov 2025 21:31:05 +0100 Subject: Add i32_store8 --- src/interp/ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interp/ops.c') diff --git a/src/interp/ops.c b/src/interp/ops.c index 6135f96..6a5f82e 100644 --- a/src/interp/ops.c +++ b/src/interp/ops.c @@ -72,7 +72,7 @@ static void (*const ops[])(struct nw_interp *) = nwp_op_i64_store, /* OP_I64_STORE */ NULL, /* OP_F32_STORE */ NULL, /* OP_F64_STORE */ - NULL, /* OP_I32_STORE8 */ + nwp_op_i32_store8, /* OP_I32_STORE8 */ NULL, /* OP_I32_STORE16 */ NULL, /* OP_I64_STORE8 */ NULL, /* OP_I64_STORE16 */ -- cgit v1.2.3