From owner-svn-src-head@FreeBSD.ORG Mon May 30 19:41:29 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 763F5106566B; Mon, 30 May 2011 19:41:29 +0000 (UTC) (envelope-from kargl@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4BFA28FC13; Mon, 30 May 2011 19:41:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p4UJfTKA090733; Mon, 30 May 2011 19:41:29 GMT (envelope-from kargl@svn.freebsd.org) Received: (from kargl@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p4UJfTm6090727; Mon, 30 May 2011 19:41:29 GMT (envelope-from kargl@svn.freebsd.org) Message-Id: <201105301941.p4UJfTm6090727@svn.freebsd.org> From: Steve Kargl Date: Mon, 30 May 2011 19:41:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r222508 - in head/lib/msun: ld128 ld80 src X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 May 2011 19:41:29 -0000 Author: kargl Date: Mon May 30 19:41:28 2011 New Revision: 222508 URL: http://svn.freebsd.org/changeset/base/222508 Log: Clean up the unneeded cpp macro INLINE_REM_PIO2L. Reviewed by: das Approved by: das (mentor) Modified: head/lib/msun/ld128/e_rem_pio2l.h head/lib/msun/ld80/e_rem_pio2l.h head/lib/msun/src/s_cosl.c head/lib/msun/src/s_sinl.c head/lib/msun/src/s_tanl.c Modified: head/lib/msun/ld128/e_rem_pio2l.h ============================================================================== --- head/lib/msun/ld128/e_rem_pio2l.h Mon May 30 19:16:58 2011 (r222507) +++ head/lib/msun/ld128/e_rem_pio2l.h Mon May 30 19:41:28 2011 (r222508) @@ -58,10 +58,7 @@ pio2_2t = 2.067032109826398823649690305 pio2_3 = 2.0670321098263988236499468110329591e-43L, /* 0x127044533e63a0105e00000000000.0p-254 */ pio2_3t = -2.5650587247459238361625433492959285e-65L; /* -0x159c4ec64ddaeb5f78671cbfb2210.0p-327 */ -#ifdef INLINE_REM_PIO2L -static inline __always_inline -#endif -int +static inline __always_inline int __ieee754_rem_pio2l(long double x, long double *y) { union IEEEl2bits u,u1; Modified: head/lib/msun/ld80/e_rem_pio2l.h ============================================================================== --- head/lib/msun/ld80/e_rem_pio2l.h Mon May 30 19:16:58 2011 (r222507) +++ head/lib/msun/ld80/e_rem_pio2l.h Mon May 30 19:41:28 2011 (r222508) @@ -70,10 +70,7 @@ pio2_2t = 6.36831716351095013979e-25L, pio2_3t = -2.75299651904407171810e-37L; /* -0xbb5bf6c7ddd660ce.0p-185 */ #endif -#ifdef INLINE_REM_PIO2L -static inline __always_inline -#endif -int +static inline __always_inline int __ieee754_rem_pio2l(long double x, long double *y) { union IEEEl2bits u,u1; Modified: head/lib/msun/src/s_cosl.c ============================================================================== --- head/lib/msun/src/s_cosl.c Mon May 30 19:16:58 2011 (r222507) +++ head/lib/msun/src/s_cosl.c Mon May 30 19:41:28 2011 (r222508) @@ -35,7 +35,6 @@ __FBSDID("$FreeBSD$"); #include #include "math.h" -#define INLINE_REM_PIO2L #include "math_private.h" #if LDBL_MANT_DIG == 64 #include "../ld80/e_rem_pio2l.h" Modified: head/lib/msun/src/s_sinl.c ============================================================================== --- head/lib/msun/src/s_sinl.c Mon May 30 19:16:58 2011 (r222507) +++ head/lib/msun/src/s_sinl.c Mon May 30 19:41:28 2011 (r222508) @@ -30,7 +30,6 @@ __FBSDID("$FreeBSD$"); #include #include "math.h" -#define INLINE_REM_PIO2L #include "math_private.h" #if LDBL_MANT_DIG == 64 #include "../ld80/e_rem_pio2l.h" Modified: head/lib/msun/src/s_tanl.c ============================================================================== --- head/lib/msun/src/s_tanl.c Mon May 30 19:16:58 2011 (r222507) +++ head/lib/msun/src/s_tanl.c Mon May 30 19:41:28 2011 (r222508) @@ -36,7 +36,6 @@ __FBSDID("$FreeBSD$"); #include #include "math.h" -#define INLINE_REM_PIO2L #include "math_private.h" #if LDBL_MANT_DIG == 64 #include "../ld80/e_rem_pio2l.h"