Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
refs/heads/binary-parser-refactor-name-fixup
/
.
/
test
/
reduce
/
atomics-and-bulk-memory.wast.txt
blob: 2b1e8aed05e70010bb37f1785c9676675fa67465 [
file
] [
log
] [
blame
] [
edit
]
(module
(type $0 (func (result i32)))
(memory $0 1 1)
(export "foo" (func $0))
(func $0 (result i32)
(i32.atomic.store8
(i32.const 0)
(i32.const 99)
)
(i32.atomic.load8_u
(i32.const 0)
)
)
)