小于
lt
指令(less than 的缩写)用于检查一个数字是否小于另一个数字。如果第一个数字小于第二个数字,则 1
将被推送到堆栈上,否则 0
将被推送到堆栈上。
整数类型对于有符号 (lt_s
) 和无符号 (lt_u
) 数字分别具有单独的小于指令。
试试看
语法
wasm
;; load 2 numbers on to the stack
local.get $num
i32.const 2
;; check if $num is less then '2'
i32.lt_u
;; if $num is less than the `2`, `1` will be pushed on to the stack,
;; otherwise `0` will be pushed on to the stack.
指令 | 二进制操作码 |
---|---|
i32.lt_s |
0x48 |
i32.lt_u |
0x49 |
i64.lt_s |
0x53 |
i64.lt_u |
0x54 |
f32.lt |
0x5d |
f64.lt |
0x63 |