Sign in
dawn
/
tint
/
fa0d64b76d0a5a636fbdcf02e3aac7087af7acdd
/
.
/
test
/
loops
/
nested_loops_with_continuing.wgsl.expected.hlsl
blob: 605a079fdd0e78e9822beba58f13b2cf72633ba6 [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
int
f
()
{
int
i
=
0
;
int
j
=
0
;
[
loop
]
while
(
true
)
{
if
((
i
>
4
))
{
return
1
;
}
[
loop
]
while
(
true
)
{
if
((
j
>
4
))
{
return
2
;
}
{
j
=
(
j
+
1
);
}
}
{
i
=
(
i
+
1
);
}
}
}