Sign in
dawn
/
tint
/
5f6a185d0210fa6adf8bbcc4c2f4f3133e671001
/
.
/
test
/
loops
/
loop.wgsl.expected.wgsl
blob: bcbc58d2f387871fcadb08b67c41894de0715954 [
file
] [
log
] [
blame
]
fn f
()
->
i32
{
var
i
:
i32
;
loop
{
i
=
(
i
+
1
);
if
((
i
>
4
))
{
return
i
;
}
}
}