Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr96491.c
blob: 784559f4754ec0ef08cccbccf287359df2ca3b15 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
rj
;
void
__attribute__
((
returns_twice
))
da
(
void
)
{
rj
=
1
;
}
void
c5
(
void
)
{
for
(;;)
++
rj
;
}
void
ls
(
int
kz
)
{
if
(
kz
==
0
)
{
rj
=
0
;
c5
();
}
da
();
c5
();
}