diff options
Diffstat (limited to 'libc-top-half/musl/src/math/s390x/rintf.c')
-rw-r--r-- | libc-top-half/musl/src/math/s390x/rintf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/s390x/rintf.c b/libc-top-half/musl/src/math/s390x/rintf.c new file mode 100644 index 0000000..c9f1313 --- /dev/null +++ b/libc-top-half/musl/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 |