Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr83685.c
blob: 062f75d23e997e7a78b6a2a0df116488a6c7a7ab [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
_setjmp
(
void
*);
void
foo
(
int
);
void
bar
(
int
e
,
int
b
,
char
c
,
void
*
d
)
{
while
(
b
)
{
if
(
_setjmp
(
d
))
foo
(
e
);
if
(
c
)
{
e
--;
foo
(
0
);
}
e
++;
}
}