svn commit: r314022 - stable/11/lib/msun/tests

Ngie Cooper ngie at FreeBSD.org
Tue Feb 21 03:49:54 UTC 2017


Author: ngie
Date: Tue Feb 21 03:49:52 2017
New Revision: 314022
URL: https://svnweb.freebsd.org/changeset/base/314022

Log:
  MFC r313713:
  
  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

Modified:
  stable/11/lib/msun/tests/fmaxmin_test.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/msun/tests/fmaxmin_test.c
==============================================================================
--- stable/11/lib/msun/tests/fmaxmin_test.c	Tue Feb 21 03:46:43 2017	(r314021)
+++ stable/11/lib/msun/tests/fmaxmin_test.c	Tue Feb 21 03:49:52 2017	(r314022)
@@ -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-stable mailing list