Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr90671.c
blob: 5a99b9d9a8412502e0b9d073013214819a5821fe [
file
] [
log
] [
blame
]
/* PR tree-optimization/90671 */
/* { dg-do compile } */
/* { dg-additional-options "-w -g" } */
int
a
;
int
main
()
{
int
b
,
c
;
for
(
c
=
0
;
c
<
2
;
c
++)
while
(
a
)
if
(
b
)
break
;
return
0
;
}