Sign in
dawn
/
dawn
/
d108693b5994198f3a4b454637adc31d820be498
/
.
/
test
/
tint
/
loops
/
while_with_continue.wgsl.expected.dxc.hlsl
blob: 3fc5e305c74803f10953afdf19ce73c90a9489be [
file
] [
log
] [
blame
]
[
numthreads
(
1
,
1
,
1
)]
void
unused_entry_point
()
{
return
;
}
int
f
()
{
int
i
=
0
;
while
((
i
<
4
))
{
i
=
(
i
+
1
);
continue
;
}
return
i
;
}