summaryrefslogtreecommitdiff
path: root/src/math/powerpc64/ceil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/powerpc64/ceil.c')
-rw-r--r--src/math/powerpc64/ceil.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/powerpc64/ceil.c b/src/math/powerpc64/ceil.c
new file mode 100644
index 00000000..4b011336
--- /dev/null
+++ b/src/math/powerpc64/ceil.c
@@ -0,0 +1,15 @@
+#include <math.h>
+
+#ifdef _ARCH_PWR5X
+
+double ceil(double x)
+{
+ __asm__ ("frip %0, %1" : "=d"(x) : "d"(x));
+ return x;
+}
+
+#else
+
+#include "../ceil.c"
+
+#endif