diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-11-15 18:53:12 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-11-15 18:53:12 +0100 |
| commit | 6c2108e6bd19ffa47b33f61501f25db47ddb4cfb (patch) | |
| tree | cb28509831024fa44f564bfb4cfd2dafeef97e73 /src/interp | |
| parent | b1034b86023672e6750da49b01a7d429cd8339d0 (diff) | |
| download | nanowasm-6c2108e6bd19ffa47b33f61501f25db47ddb4cfb.tar.gz | |
Add select operator
Diffstat (limited to 'src/interp')
| -rw-r--r-- | src/interp/ops.c | 2 |
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, |
