aboutsummaryrefslogtreecommitdiff
path: root/src/interp/ops.c
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-11-06 21:31:05 +0100
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-06 21:31:05 +0100
commitc33a13fba8a0674fcc2d835021cc37f6cfe3d8fa (patch)
tree635df4c656f2fdf5bf9b5951b91f2adaeb3ea4ab /src/interp/ops.c
parent6d9d80362f9932bbc87e162b8ef7df06c73e27e1 (diff)
downloadnanowasm-c33a13fba8a0674fcc2d835021cc37f6cfe3d8fa.tar.gz
Add i32_store8
Diffstat (limited to 'src/interp/ops.c')
-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 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 */