Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr18712.c
blob: 7f00e856873f53c47ecec07127ba67cab83c27c5 [
file
] [
log
] [
blame
]
void
foo
(
void
);
void
foo1
(
int
*);
void
*
eintr_source
(
void
*
arg
)
{
int
ts
=
0
;
if
(
arg
)
foo
();
while
(
1
)
{
if
(
arg
)
foo
();
foo1
(&
ts
);
}
return
0
;
}