Sign in
dawn
/
dawn
/
7206591c25f02f061b7e8c844cb240bfb69c084c
/
.
/
test
/
tint
/
loops
/
nested_loops_with_continuing.wgsl.expected.ir.msl
blob: 53fe43a101dd9b9413c1420e5c6c91e32ee78d41 [
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 */
}