Sign in
dawn
/
dawn
/
a23bcd8a0caacc5377ace15cf3849fcd0e69ef8f
/
.
/
test
/
tint
/
loops
/
nested_loops_with_continuing.wgsl.expected.ir.dxc.hlsl
blob: b8b2ddb668b2a11511595535f65255d6f9819fa8 [
file
] [
log
] [
blame
]
int
f
()
{
int
i
=
0
;
int
j
=
0
;
{
while
(
true
)
{
if
((
i
>
4
))
{
return
1
;
}
{
while
(
true
)
{
if
((
j
>
4
))
{
return
2
;
}
{
j
=
(
j
+
1
);
}
continue
;
}
}
/* unreachable */
}
}
/* unreachable */
}
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
}