Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
pr97737.c
blob: eef1c3531911be6faa5789b8e2e81fa20324e85c [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2" } */
int
a
=
1
,
b
,
c
;
void
d
()
{
int
e
=
1
;
L1
:
b
=
e
;
L2
:
e
=
e
/
a
;
if
(!(
e
||
c
||
e
-
1
))
goto
L1
;
if
(!
b
)
goto
L2
;
}