Sign in
dawn
/
dawn
/
5580f09a1ca57723c7ac16f0eb827ab40d53bd11
/
.
/
test
/
tint
/
loops
/
loop_with_continuing.wgsl.expected.ir.msl
blob: 4a2baf20f5deb2fafaba4c516f89052b7055fcd5 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
f
()
{
int
i
=
0
;
{
while
(
true
)
{
if
((
i
>
4
))
{
return
i
;
}
{
i
=
as_type
<int>
((
as_type
<uint>
(
i
)
+
as_type
<uint>
(
1
)));
}
continue
;
}
}
/* unreachable */
}