summaryrefslogtreecommitdiff
path: root/src/math/s390x/ceill.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/s390x/ceill.c')
-rw-r--r--src/math/s390x/ceill.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/math/s390x/ceill.c b/src/math/s390x/ceill.c
new file mode 100644
index 00000000..b838dc13
--- /dev/null
+++ b/src/math/s390x/ceill.c
@@ -0,0 +1,15 @@
+#include <math.h>
+
+#if defined(__HTM__) || __ARCH__ >= 9
+
+long double ceill(long double x)
+{
+ __asm__ ("fixbra %0, 6, %1, 4" : "=f"(x) : "f"(x));
+ return x;
+}
+
+#else
+
+#include "../ceill.c"
+
+#endif