diff options
Diffstat (limited to 'libc-top-half/musl/src/math/powerpc64/ceilf.c')
-rw-r--r-- | libc-top-half/musl/src/math/powerpc64/ceilf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/powerpc64/ceilf.c b/libc-top-half/musl/src/math/powerpc64/ceilf.c new file mode 100644 index 0000000..59ba396 --- /dev/null +++ b/libc-top-half/musl/src/math/powerpc64/ceilf.c @@ -0,0 +1,15 @@ +#include <math.h> + +#ifdef _ARCH_PWR5X + +float ceilf(float x) +{ + __asm__ ("frip %0, %1" : "=f"(x) : "f"(x)); + return x; +} + +#else + +#include "../ceilf.c" + +#endif |