Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr68906.c
blob: 8c89bbd2ea404450378241dac44e3b128480e874 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O3" } */
int
a
;
volatile
int
b
;
short
c
,
d
;
int
fn1
()
{
int
e
;
for
(;;)
{
a
=
3
;
if
(
c
)
continue
;
e
=
0
;
for
(;
e
>
-
30
;
e
--)
if
(
b
)
{
int
f
=
e
;
return
d
;
}
}
}