diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-08-20 23:26:11 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-08-20 23:26:11 +0000 |
commit | cfb5d4db12e36486971ca07b8ac9f2958dcfa165 (patch) | |
tree | ecae0ff2120a228822ac8d17fdebd7dfbd8c4eeb /winsup/mingw/include/math.h | |
parent | aabc7d585a473f06de07cb4778618e5bf94dcba1 (diff) | |
download | cygnal-cfb5d4db12e36486971ca07b8ac9f2958dcfa165.tar.gz cygnal-cfb5d4db12e36486971ca07b8ac9f2958dcfa165.tar.bz2 cygnal-cfb5d4db12e36486971ca07b8ac9f2958dcfa165.zip |
* include/math.h (asm): Change to __asm__ throughout.
Expose ISO C99 functions if __GLIBCPP__.
(hypotf): Use hypot, not _hypot in stub..
Diffstat (limited to 'winsup/mingw/include/math.h')
-rw-r--r-- | winsup/mingw/include/math.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index 189e93bf8..488493895 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -147,7 +147,7 @@ double sqrt (double); extern __inline__ double sqrt (double x) { double res; - asm ("fsqrt" : "=t" (res) : "0" (x)); + __asm__ ("fsqrt;" : "=t" (res) : "0" (x)); return res; } double ceil (double); @@ -156,7 +156,7 @@ double fabs (double); extern __inline__ double fabs (double x) { double res; - asm ("fabs;" : "=t" (res) : "0" (x)); + __asm__ ("fabs;" : "=t" (res) : "0" (x)); return res; } double ldexp (double, int); @@ -232,7 +232,7 @@ int fpclass (double); #ifndef __NO_ISOCEXT #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \ - || !defined __STRICT_ANSI__ + || !defined __STRICT_ANSI__ || defined __GLIBCPP__ #define NAN (0.0F/0.0F) #define HUGE_VALF (1.0F/0.0F) @@ -437,7 +437,7 @@ extern long double logbl (long double); extern __inline__ double logb (double x) { double res; - asm ("fxtract\n\t" + __asm__ ("fxtract\n\t" "fstp %%st" : "=t" (res) : "0" (x)); return res; } @@ -445,7 +445,7 @@ extern __inline__ double logb (double x) extern __inline__ float logbf (float x) { float res; - asm ("fxtract\n\t" + __asm__ ("fxtract\n\t" "fstp %%st" : "=t" (res) : "0" (x)); return res; } @@ -453,7 +453,7 @@ extern __inline__ float logbf (float x) extern __inline__ long double logbl (long double x) { long double res; - asm ("fxtract\n\t" + __asm__ ("fxtract\n\t" "fstp %%st" : "=t" (res) : "0" (x)); return res; } @@ -481,21 +481,21 @@ extern long double cbrtl (long double); extern __inline__ float fabsf (float x) { float res; - asm ("fabs;" : "=t" (res) : "0" (x)); + __asm__ ("fabs;" : "=t" (res) : "0" (x)); return res; } extern __inline__ long double fabsl (long double x) { long double res; - asm ("fabs;" : "=t" (res) : "0" (x)); + __asm__ ("fabs;" : "=t" (res) : "0" (x)); return res; } /* 7.12.7.3 */ extern double hypot (double, double); /* in libmoldname.a */ extern __inline__ float hypotf (float x, float y) - { return (float) _hypot (x, y);} + { return (float) hypot (x, y);} extern long double hypotl (long double, long double); /* 7.12.7.4 The pow functions. Double in C89 */ @@ -507,14 +507,14 @@ extern long double powl (long double, long double); extern __inline__ float sqrtf (float x) { float res; - asm ("fsqrt" : "=t" (res) : "0" (x)); + __asm__ ("fsqrt" : "=t" (res) : "0" (x)); return res; } extern __inline__ long double sqrtl (long double x) { long double res; - asm ("fsqrt" : "=t" (res) : "0" (x)); + __asm__ ("fsqrt" : "=t" (res) : "0" (x)); return res; } |