Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
binaryen
/
refs/heads/binary-parser-refactor-name-fixup
/
.
/
test
/
passes
/
souperify.wast
blob: a67c7d04f70b624ab766226bd0c96f54a0f3960b [
file
] [
log
] [
blame
] [
edit
]
(
module
;;
This
tests
if
we can create dataflow graph correctly
in
the presence of
;;
loops
.
(
func $if
-
loop
-
test
(
local
$0 i32
)
(
if
(
i32
.
const
0
)
(
then
(
loop $label$0
(
local
.
set
$0
(
i32
.
sub
(
i32
.
const
0
)
(
i32
.
const
0
)
)
)
)
)
)
)
)