Sign in
dawn
/
dawn
/
0f8c1cabc4d0b1b98a2eb173c83bef00b7e002a9
/
.
/
test
/
tint
/
loops
/
single_continue.wgsl.expected.ir.msl
blob: 573c2b5f9ed4a1c2629ab7e9619f2873a7195351 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
tint_symbol
()
{
{
int
i
=
0
;
while
(
true
)
{
if
((
i
<
2
))
{
}
else
{
break
;
}
switch
(
i
)
{
case
0
:
{
i
=
(
i
+
1
);
continue
;
}
default
:
{
break
;
}
}
i
=
(
i
+
1
);
continue
;
}
}
}