Sign in
dawn
/
dawn
/
0567736dfb04b0dfb51d764201800724aa8df8d2
/
.
/
test
/
tint
/
statements
/
for
/
basic.wgsl.expected.msl
blob: 4db25b4035e3a9a5b01ff0c8bd7b7693d5ac11ce [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
void
some_loop_body
()
{
}
void
f
()
{
{
int
i
=
0
;
while
(
true
)
{
if
((
i
<
5
))
{
}
else
{
break
;
}
some_loop_body
();
{
i
=
as_type
<int>
((
as_type
<uint>
(
i
)
+
as_type
<uint>
(
1
)));
}
continue
;
}
}
}