svn commit: r368780 - stable/12/lib/msun
Ryan Libby
rlibby at FreeBSD.org
Sat Dec 19 04:05:09 UTC 2020
Author: rlibby
Date: Sat Dec 19 04:05:08 2020
New Revision: 368780
URL: https://svnweb.freebsd.org/changeset/base/368780
Log:
MFC r343671 (by vangyzen):
libm: squelch -Woverflow from gcc6
Sponsored by: Dell EMC Isilon
Modified:
stable/12/lib/msun/Makefile
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/lib/msun/Makefile
==============================================================================
--- stable/12/lib/msun/Makefile Sat Dec 19 03:30:06 2020 (r368779)
+++ stable/12/lib/msun/Makefile Sat Dec 19 04:05:08 2020 (r368780)
@@ -108,6 +108,15 @@ COMMON_SRCS+= catrigl.c \
s_nextafterl.c s_nexttoward.c s_remquol.c s_rintl.c s_roundl.c \
s_scalbnl.c s_sinl.c s_sincosl.c \
s_tanhl.c s_tanl.c s_truncl.c w_cabsl.c
+# Work around this warning from gcc 6:
+# lib/msun/ld80/e_powl.c:275:1: error: floating constant exceeds range of
+# 'long double' [-Werror=overflow]
+# if( y >= LDBL_MAX )
+# See also: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=130067
+.include <bsd.compiler.mk>
+.if ${COMPILER_TYPE} == "gcc" && ${COMPILER_VERSION} >= 60000
+CFLAGS.e_powl.c+= -Wno-error=overflow
+.endif
.endif
# C99 complex functions
More information about the svn-src-stable
mailing list