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