Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
refs/heads/binary-parser-refactor-name-fixup
/
.
/
test
/
wasm2js
/
i64-ctz.wast
blob: fac8efad10a9fd0b06d887dc2394e8fb96db111e [
file
] [
log
] [
blame
] [
edit
]
(
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
)))
)