Sign in
dawn
/
tint
/
refs/heads/chromium/4790
/
.
/
test
/
statements
/
for
/
basic.wgsl.expected.msl
blob: 20c444b44e2f7b4bf8d21fc3204e54c8bc102d80 [
file
] [
log
] [
blame
] [
edit
]
#include
<metal_stdlib>
using
namespace
metal
;
void
some_loop_body
()
{
}
void
f
()
{
for
(
int
i
=
0
;
(
i
<
5
);
i
=
as_type
<int>
((
as_type
<uint>
(
i
)
+
as_type
<uint>
(
1
))))
{
some_loop_body
();
}
}