remove cruft for supposedly-buggy clang from or1k & microblaze syscall_arch
[musl.git] / src / math / s390x / nearbyintf.c
blob704f26781984d8ae6ebfa38a6dff1befde55c26f
1 #include <math.h>
3 #if defined(__HTM__) || __ARCH__ >= 9
5 float nearbyintf(float x)
7 __asm__ ("fiebra %0, 0, %1, 4" : "=f"(x) : "f"(x));
8 return x;
11 #else
13 #include "../nearbyintf.c"
15 #endif