Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr93491.c
blob: 2cb4c0ca7afe5da7fc5a13bb592682ddd65effb1 [
file
] [
log
] [
blame
]
/* { dg-do run } */
extern
void
exit
(
int
);
__attribute__
((
noipa
))
void
f
(
int
i
)
{
exit
(
i
);
}
__attribute__
((
const
,
noipa
))
int
g
(
int
i
)
{
return
1
/
i
;
}
int
main
()
{
while
(
1
)
{
f
(
0
);
f
(
g
(
0
));
}
}