Sign in
llvm
/
llvm-project
/
b434bc4e90c2b83156871e7b4e12f04447930b9c
/
.
/
libc
/
cmake
/
modules
/
compiler_features
/
check_builtin_round.cpp
blob: 79a347ada8b601bf9f2e3d8976650d13d959b483 [
file
] [
log
] [
blame
]
float
try_builtin_roundf
(
float
x
)
{
return
__builtin_roundf
(
x
);
}
double
try_builtin_round
(
double
x
)
{
return
__builtin_round
(
x
);
}
extern
"C"
void
_start
()
{}