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