向上取整

**ceil** 指令用于获取向上取整到下一个整数的数值。

尝试

语法

wasm
;; load a number onto the stack
f32.const 2.7

;; round up
f32.ceil

;; the top item on the stack will now be 3
指令 二进制操作码
f32.ceil 0x8d
f64.ceil 0x9b