wasmer/popcnt.wat

5 lines
96 B
Plaintext
Raw Normal View History

(module
(func $main (export "main") (result i32)
(i32.popcnt (i32.const -1))
)
)