Sign in
fuchsia
/
third_party
/
glslang
/
refs/heads/sandbox/liyl/SDK-candidate-2-withEnumFix
/
.
/
Test
/
spv.dead-after-loop-break.vert
blob: 5498497c3e3ccfcadbe7fc6ffb5b361b6a26ce96 [
file
] [
log
] [
blame
] [
edit
]
#version 450
layout
(
location
=
0
)
in
int
c
;
layout
(
location
=
0
)
out
int
o
;
void
main
()
{
int
i
;
o
=
1
;
for
(
i
=
0
;
i
<
5
;
i
++)
{
o
=
2
;
if
(
i
==
c
)
{
o
=
3
;
break
;
o
=
4
;
}
o
=
5
;
}
o
=
6
;
}