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