|
@@ -137,6 +137,7 @@ double tgamma(double x)
|
|
/* x =< -184: tgamma(x)=+-0 with underflow */
|
|
/* x =< -184: tgamma(x)=+-0 with underflow */
|
|
if (absx >= 184) {
|
|
if (absx >= 184) {
|
|
if (x < 0) {
|
|
if (x < 0) {
|
|
|
|
+ FORCE_EVAL((float)(0x1p-126/x));
|
|
if (floor(x) * 0.5 == floor(x * 0.5))
|
|
if (floor(x) * 0.5 == floor(x * 0.5))
|
|
return 0;
|
|
return 0;
|
|
return -0.0;
|
|
return -0.0;
|