Sign in
dawn
/
dawn
/
6426a534f6bd74194a60323f9e50449c140c9480
/
.
/
test
/
tint
/
loops
/
nested_loops_with_continuing.wgsl.expected.ir.msl
blob: 8f07396eb0c734e1c21a23097950bfc76b5356af [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
f
()
{
int
i
=
0
;
int
j
=
0
;
{
while
(
true
)
{
if
((
i
>
4
))
{
return
1
;
}
{
while
(
true
)
{
if
((
j
>
4
))
{
return
2
;
}
j
=
(
j
+
1
);
continue
;
}
}
/* unreachable */
}
}
/* unreachable */
}