From 3927f0a891c576b49ec73aa266dd767d07df6048 Mon Sep 17 00:00:00 2001 From: Danny Smith Date: Wed, 14 May 2003 01:03:20 +0000 Subject: [PATCH] * include/math.h (fabs) : Remove inline definition. (fabsf): Likewise. (fabsl): Likewise. --- winsup/mingw/ChangeLog | 6 ++++++ winsup/mingw/include/math.h | 23 ++--------------------- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index e5026be8f..7b65f62b4 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,9 @@ +2003-05-13 Danny Smith + + * include/math.h (fabs) : Remove inline definition. + (fabsf): Likewise. + (fabsl): Likewise. + 2003-05-06 Earnie Boyd * include/_mingw.h: Change version to 3.0 diff --git a/winsup/mingw/include/math.h b/winsup/mingw/include/math.h index bd0a0da89..6d1d8ccdb 100644 --- a/winsup/mingw/include/math.h +++ b/winsup/mingw/include/math.h @@ -167,14 +167,6 @@ _CRTIMP double __cdecl sqrt (double); _CRTIMP double __cdecl ceil (double); _CRTIMP double __cdecl floor (double); _CRTIMP double __cdecl fabs (double); -#if !defined (__NO_INLINES__) -extern __inline__ __cdecl double fabs (double x) -{ - double res; - __asm__ ("fabs;" : "=t" (res) : "0" (x)); - return res; -} -#endif _CRTIMP double __cdecl ldexp (double, int); _CRTIMP double __cdecl frexp (double, int*); _CRTIMP double __cdecl modf (double, double*); @@ -494,19 +486,8 @@ extern float __cdecl cbrtf (float); extern long double __cdecl cbrtl (long double); /* 7.12.7.2 The fabs functions: Double in C89 */ -extern __inline__ float __cdecl fabsf (float x) -{ - float res; - __asm__ ("fabs;" : "=t" (res) : "0" (x)); - return res; -} - -extern __inline__ long double __cdecl fabsl (long double x) -{ - long double res; - __asm__ ("fabs;" : "=t" (res) : "0" (x)); - return res; -} +extern float __cdecl fabsf (float x); +extern long double __cdecl fabsl (long double x); /* 7.12.7.3 */ extern double __cdecl hypot (double, double); /* in libmoldname.a */ -- 2.43.5