mirror of
https://github.com/pezkuwichain/wasm-instrument.git
synced 2026-06-12 19:21:07 +00:00
10 lines
175 B
WebAssembly Text Format
10 lines
175 B
WebAssembly Text Format
(module
|
|
(func (param $x i32) (result i32)
|
|
(if (result i32)
|
|
(i32.const 1)
|
|
(then (i32.add (get_local $x) (i32.const 1)))
|
|
(else (i32.popcnt (get_local $x)))
|
|
)
|
|
)
|
|
)
|