大于
gt
指令,简称为大于,检查一个数字是否大于另一个数字。如果第一个数字大于第二个数字,则 1
将被推送到堆栈中,否则 0
将被推送到堆栈中。
整数类型具有单独的大于指令,用于有符号 (gt_s
) 和无符号 (gt_u
) 数字。
试试看
语法
wasm
;; load 2 numbers on to the stack
local.get $num
i32.const 2
;; check if $num is greater than '2'
i32.gt_u
;; if $num is greater than the `2`, `1` will be pushed on to the stack,
;; otherwise `0` will be pushed on to the stack.
指令 | 二进制操作码 |
---|---|
i32.gt_s |
0x4a |
i32.gt_u |
0x4b |
i64.gt_s |
0x55 |
i64.gt_u |
0x56 |
f32.gt |
0x5e |
f64.gt |
0x64 |