Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
gcc.dg
/
Wdeprecated-non-prototype-5.c
blob: b231a74cebe32cd042b720f233a6901bf254d5ff [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-Wdeprecated-non-prototype" } */
static
inline
int
f
(
int
x
)
{
return
__builtin_constant_p
(
x
);
}
static
inline
int
g
(
double
x
)
{
return
__builtin_isfinite
(
x
);
}