summaryrefslogtreecommitdiff
path: root/test/wasm2js/i64-ctz.wast
blob: ce3a27d89358a469abf6e06c5f64f83f0ec984bb (plain)
1
2
3
4
5
6
7
8
(module
 (export "a" (func $popcnt64))
 (export "b" (func $ctz64))
 (func $popcnt64 (param $0 i64) (result i64)
   (i64.popcnt (get_local $0)))
 (func $ctz64 (param $0 i64) (result i64)
   (i64.ctz (get_local $0)))
 )