Sign in
dawn
/
dawn
/
35e4e5a3ffdcf91a0e12e5d42f82d16129e8a18c
/
.
/
test
/
tint
/
loops
/
while_with_continue.wgsl.expected.ir.msl
blob: 9686db1cbc7c6b07435ac92c9f3b565b42318908 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
f
()
{
int
i
=
0
;
{
while
(
true
)
{
if
((
i
<
4
))
{
}
else
{
break
;
}
i
=
(
i
+
1
);
continue
;
}
}
return
i
;
}