Sign in
llvm
/
llvm-project
/
475cd8dfaf84dba4eae4172352953a84c3730f71
/
.
/
libc
/
cmake
/
modules
/
compiler_features
/
check_builtin_roundeven.cpp
blob: 0aa40dc7f4b7a9c1ccd5f9d62c5b774f57e3c76e [
file
] [
log
] [
blame
]
float
try_builtin_roundevenf
(
float
x
)
{
return
__builtin_roundevenf
(
x
);
}
double
try_builtin_roundeven
(
double
x
)
{
return
__builtin_roundeven
(
x
);
}
extern
"C"
void
_start
()
{}