Sign in
dawn
/
dawn
/
7206591c25f02f061b7e8c844cb240bfb69c084c
/
.
/
test
/
tint
/
loops
/
while_with_continue.wgsl.expected.ir.dxc.hlsl
blob: cfb5a462dade3055a56377bc223a8d4e6370b5d5 [
file
] [
log
] [
blame
]
int
f
()
{
int
i
=
0
;
{
while
(
true
)
{
if
((
i
<
4
))
{
}
else
{
break
;
}
i
=
(
i
+
1
);
{
}
continue
;
}
}
return
i
;
}
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
}