diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-10 11:35:11 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-10 11:35:11 +0000 |
commit | ab2b94613d85ba9edc659bd5e930b9ab1ec8e8a9 (patch) | |
tree | eedbc98232a3ec938f66bb94cb633845a3e3587a /math/w_tgamma.c | |
parent | 4c0fe6fe42ecf97c9f7f5a0921638560c89973a2 (diff) | |
download | glibc-ab2b94613d85ba9edc659bd5e930b9ab1ec8e8a9.tar.gz glibc-ab2b94613d85ba9edc659bd5e930b9ab1ec8e8a9.tar.xz glibc-ab2b94613d85ba9edc659bd5e930b9ab1ec8e8a9.zip |
Fix tgamma errno setting on domain error (bug 6809).
Diffstat (limited to 'math/w_tgamma.c')
-rw-r--r-- | math/w_tgamma.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/w_tgamma.c b/math/w_tgamma.c index 976b5fb95c..6b6c7c5241 100644 --- a/math/w_tgamma.c +++ b/math/w_tgamma.c @@ -24,7 +24,8 @@ __tgamma(double x) int local_signgam; double y = __ieee754_gamma_r(x,&local_signgam); - if(__builtin_expect(!__finite(y), 0)&&__finite(x) + if(__builtin_expect(!__finite(y), 0) + && (__finite (x) || __isinf (x) < 0) && _LIB_VERSION != _IEEE_) { if (x == 0.0) return __kernel_standard(x,x,50); /* tgamma pole */ |