Sign in
dawn
/
dawn
/
e1e89b51012b8cdd96d9455d0656c012a855370d
/
.
/
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
;
}
}
}