remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl.git] / src / math / powerpc64 / fmin.c
blobadf71bad9578cd6a90a1a954336c0eeb75119709
1 #include <math.h>
3 #ifdef __VSX__
5 double fmin(double x, double y)
7 __asm__ ("xsmindp %x0, %x1, %x2" : "=ws"(x) : "ws"(x), "ws"(y));
8 return x;
11 #else
13 #include "../fmin.c"
15 #endif