Sign in
dawn
/
dawn
/
0012e8dbb3e2d3d0f056c60cc5f5a000bc89e5d6
/
.
/
test
/
tint
/
loops
/
nested_loops_with_continuing.wgsl.expected.fxc.hlsl
blob: 8637069489c50845545c1372e906b538e0dd032c [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
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
);
}
}
{
i
=
(
i
+
1
);
}
}
}