From b6cd89849e57f0caebcd4e45408b62d2004e6e4e Mon Sep 17 00:00:00 2001 From: Ed Schouten Date: Thu, 8 Jan 2015 09:49:31 +0100 Subject: [PATCH] Don't let tgammal() modify signgam. Only lgamma*() should modify it. Letting tgammal() modify signgam has two disadvantages: - It breaks valid code that assumes that the value of signgam is not clobbered by calls to tgammal(). - It makes this function depend on the presence of signgam. signgam is an X/Open System Interface. It is not part of the C standard. --- ld128/e_tgammal.c | 12 +++--------- ld80/e_tgammal.c | 19 ++++++------------- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/ld128/e_tgammal.c b/ld128/e_tgammal.c index 2fa8002..fb36209 100644 --- a/ld128/e_tgammal.c +++ b/ld128/e_tgammal.c @@ -26,20 +26,14 @@ tgammal(long double x) int64_t i0,i1; GET_LDOUBLE_WORDS64(i0,i1,x); - if (((i0&0x7fffffffffffffffLL)|i1) == 0) { - signgam = 0; + if (((i0&0x7fffffffffffffffLL)|i1) == 0) return (1.0/x); - } - if (i0<0 && (u_int64_t)i0<0xffff000000000000ULL && rintl(x)==x) { - signgam = 0; + if (i0<0 && (u_int64_t)i0<0xffff000000000000ULL && rintl(x)==x) return (x-x)/(x-x); - } - if (i0==0xffff000000000000ULL && i1==0) { - signgam = 0; + if (i0==0xffff000000000000ULL && i1==0) return (x-x); - } return expl(lgammal(x)); } diff --git a/ld80/e_tgammal.c b/ld80/e_tgammal.c index 571a0a9..8dfcd65 100644 --- a/ld80/e_tgammal.c +++ b/ld80/e_tgammal.c @@ -25,7 +25,6 @@ * SYNOPSIS: * * long double x, y, tgammal(); - * extern int signgam; * * y = tgammal( x ); * @@ -33,10 +32,8 @@ * * DESCRIPTION: * - * Returns gamma function of the argument. The result is - * correctly signed, and the sign (+1 or -1) is also - * returned in a global (extern) variable named signgam. - * This variable is also filled in by the logarithmic gamma + * Returns gamma function of the argument. The result is correctly + * signed. This variable is also filled in by the logarithmic gamma * function lgamma(). * * Arguments |x| <= 13 are reduced by recurrence and the function @@ -61,7 +58,6 @@ #include #include "math_private.h" -extern int signgam; /* tgamma(x+2) = tgamma(x+2) P(x)/Q(x) @@ -224,7 +220,6 @@ tgammal(long double x) long double p, q, z; int i; -signgam = 1; if( isnan(x) ) return(NAN); if(x == INFINITY) @@ -237,6 +232,7 @@ q = fabsl(x); if( q > 13.0L ) { + int sign = 1; if( q > MAXGAML ) goto goverf; if( x < 0.0L ) @@ -246,7 +242,7 @@ if( q > 13.0L ) return (x - x) / (x - x); i = p; if( (i & 1) == 0 ) - signgam = -1; + sign = -1; z = q - p; if( z > 0.5L ) { @@ -258,7 +254,7 @@ if( q > 13.0L ) if( z <= PIL/LDBL_MAX ) { goverf: - return( signgam * INFINITY); + return( sign * INFINITY); } z = PIL/z; } @@ -266,7 +262,7 @@ goverf: { z = stirf(x); } - return( signgam * z ); + return( sign * z ); } z = 1.0L; @@ -298,8 +294,6 @@ x -= 2.0L; p = __polevll( x, P, 7 ); q = __polevll( x, Q, 8 ); z = z * p / q; -if( z < 0 ) - signgam = -1; return z; small: @@ -311,7 +305,6 @@ else { x = -x; q = z / (x * __polevll( x, SN, 8 )); - signgam = -1; } else q = z / (x * __polevll( x, S, 8 ));