aboutsummaryrefslogtreecommitdiff
path: root/src/interp
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2025-11-15 18:53:12 +0100
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-15 18:53:12 +0100
commit6c2108e6bd19ffa47b33f61501f25db47ddb4cfb (patch)
treecb28509831024fa44f564bfb4cfd2dafeef97e73 /src/interp
parentb1034b86023672e6750da49b01a7d429cd8339d0 (diff)
downloadnanowasm-6c2108e6bd19ffa47b33f61501f25db47ddb4cfb.tar.gz
Add select operator
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 4366a49..7c0d911 100644
--- a/src/interp/ops.c
+++ b/src/interp/ops.c
@@ -41,7 +41,7 @@ static void (*const ops[])(struct nw_interp *) =
NULL,
NULL,
nwp_op_drop, /* OP_DROP */
- NULL, /* OP_SELECT */
+ nwp_op_select, /* OP_SELECT */
NULL,
NULL,
NULL,