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