Sign in
gnu
/
gcc
/
93ac832f1846e4867aa6537f76f510fab8e3e87d
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr60849.C
blob: 52d8826b0c880b2d2bc2e7f92b24ebd23e59c92b [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-options "-O2" }
int
g
;
extern
"C"
int
isnan
();
void
foo
(
float
a
)
{
int
(*
xx
)(...);
xx
=
isnan
;
if
(
xx
(
a
))
g
++;
}