Sign in
llvm
/
llvm-project
/
52af23f950bc9585c623bfff6ac2a7d4fbe5e18a
/
.
/
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
()
{}