diff options
Diffstat (limited to 'src/math/powerpc64/fabs.c')
-rw-r--r-- | src/math/powerpc64/fabs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/math/powerpc64/fabs.c b/src/math/powerpc64/fabs.c new file mode 100644 index 00000000..6123c753 --- /dev/null +++ b/src/math/powerpc64/fabs.c @@ -0,0 +1,7 @@ +#include <math.h> + +double fabs(double x) +{ + __asm__ ("fabs %0, %1" : "=d"(x) : "d"(x)); + return x; +} |