降级

demote 指令用于将 f64 类型的数字转换为 f32 类型的数字(降级)。

试一试

语法

wasm
;; push an f64 onto the stack
f64.const 10.5

;; demote from f64 to f32
f32.demote_f64

;; the top item on the stack will now be the value 10.5 of type f32
指令 二进制操作码
f32.demote_f64 0xb6