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