svn commit: r313713 - head/lib/msun/tests

Ngie Cooper ngie at FreeBSD.org
Tue Feb 14 00:54:50 UTC 2017


Author: ngie
Date: Tue Feb 14 00:54:48 2017
New Revision: 313713
URL: https://svnweb.freebsd.org/changeset/base/313713

Log:
  Handle clang 4.x+ with the compile-time exception added in r312213
  
  It also fails the assertions noted in bug 208703
  
  PR:	208703
  PR:	217084
  Submitted by:	jbeich
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/msun/tests/fmaxmin_test.c

Modified: head/lib/msun/tests/fmaxmin_test.c
==============================================================================
--- head/lib/msun/tests/fmaxmin_test.c	Tue Feb 14 00:04:36 2017	(r313712)
+++ head/lib/msun/tests/fmaxmin_test.c	Tue Feb 14 00:54:48 2017	(r313713)
@@ -116,7 +116,8 @@ testall(int testnum, long double big, lo
 
 /* Clang 3.8.0+ fails the invariants for testcase 6, 7, 10, and 11. */
 #if defined(__clang__) && \
-    (__clang_major__ >= 3 && __clang_minor__ >= 8 && __clang_patchlevel__ >= 0)
+    ((__clang_major__ >  3)) || \
+    ((__clang_major__ == 3 && __clang_minor__ >= 8))
 #define	affected_by_bug_208703
 #endif
 


More information about the svn-src-head mailing list