summaryrefslogtreecommitdiff
path: root/test/wasm2js/i64-ctz.wast
blob: fac8efad10a9fd0b06d887dc2394e8fb96db111e (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 (local.get $0)))
 (func $ctz64 (param $0 i64) (result i64)
   (i64.ctz (local.get $0)))
 )