diff options
Diffstat (limited to 'winsup/cygwin/math/fabsl.c')
-rw-r--r-- | winsup/cygwin/math/fabsl.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/winsup/cygwin/math/fabsl.c b/winsup/cygwin/math/fabsl.c new file mode 100644 index 0000000..2dfdfaa --- /dev/null +++ b/winsup/cygwin/math/fabsl.c @@ -0,0 +1,18 @@ +/** + * This file has no copyright assigned and is placed in the Public Domain. + * This file is part of the mingw-w64 runtime package. + * No warranty is given; refer to the file DISCLAIMER.PD within this package. + */ +long double fabsl (long double x); + +long double +fabsl (long double x) +{ +#if defined(__x86_64__) || defined(_AMD64_) || defined(__i386__) || defined(_X86_) + long double res = 0.0L; + asm ("fabs;" : "=t" (res) : "0" (x)); + return res; +#elif defined(__arm__) || defined(_ARM_) + return __builtin_fabsl (x); +#endif /* defined(__x86_64__) || defined(_AMD64_) || defined(__i386__) || defined(_X86_) */ +} |