Sign in
dawn
/
dawn
/
6e93ca5f8bfa3ff68c2b580212f5853ccc7985a1
/
.
/
test
/
tint
/
statements
/
for
/
continuing
/
array_ctor.wgsl.expected.ir.msl
blob: ec98763bb74d0016bf331d6d763a176a56a9a39f [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
void
f
()
{
int
i
=
0
;
{
while
(
true
)
{
if
(
false
)
{
}
else
{
break
;
}
{
i
=
(
i
+
1
);
}
continue
;
}
}
}