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