25845f
commit 9d96909913249f7b1ff9f503f8fa8abc458089a9
25845f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25845f
Date:   Thu Dec 11 07:17:11 2014 -0500
25845f
25845f
    powerpc: Fix lgammal_r overflow warnings
25845f
    
25845f
    ldbl-128ibm uses ldbl-128 e_lgammal_r implementation as is, however some
25845f
    constants definitions overflows for IBM long double range.  This patch
25845f
    suppress the compiler warnings until the ldbl-128ibm implementation is
25845f
    fixed.
25845f
25845f
diff --git a/sysdeps/ieee754/ldbl-128/e_lgammal_r.c b/sysdeps/ieee754/ldbl-128/e_lgammal_r.c
25845f
index 2b44afb759695f11..39c38b4b6bf1daad 100644
25845f
--- a/sysdeps/ieee754/ldbl-128/e_lgammal_r.c
25845f
+++ b/sysdeps/ieee754/ldbl-128/e_lgammal_r.c
25845f
@@ -70,12 +70,20 @@
25845f
 
25845f
 #include <math.h>
25845f
 #include <math_private.h>
25845f
+#include <libc-internal.h>
25845f
+#include <float.h>
25845f
 
25845f
+/* BZ#16347: ldbl-128ibm uses this file as is, however the MAXLGM
25845f
+   definition overflows for IBM long double.  This directive prevents the
25845f
+   overflow warnings until IBM long double version is fixed.  */
25845f
 static const long double PIL = 3.1415926535897932384626433832795028841972E0L;
25845f
+DIAG_PUSH_NEEDS_COMMENT;
25845f
+DIAG_IGNORE_NEEDS_COMMENT (4.6, "-Woverflow");
25845f
 static const long double MAXLGM = 1.0485738685148938358098967157129705071571E4928L;
25845f
+DIAG_POP_NEEDS_COMMENT;
25845f
 static const long double one = 1.0L;
25845f
 static const long double zero = 0.0L;
25845f
-static const long double huge = 1.0e4000L;
25845f
+static const long double huge = LDBL_MAX;
25845f
 
25845f
 /* log gamma(x) = ( x - 0.5 ) * log(x) - x + LS2PI + 1/x P(1/x^2)
25845f
    1/x <= 0.0741 (x >= 13.495...)