View | Details | Raw Unified | Return to bug 217084
Collapse All | Expand All

(-)lib/msun/tests/fmaxmin_test.c (-2 / +2 lines)
Lines 115-122 testall(int testnum, long double big, long double Link Here
115
}
115
}
116
116
117
/* Clang 3.8.0+ fails the invariants for testcase 6, 7, 10, and 11. */
117
/* Clang 3.8.0+ fails the invariants for testcase 6, 7, 10, and 11. */
118
#if defined(__clang__) && \
118
#if defined(__clang__) && ((__clang_major__ > 3) || \
119
    (__clang_major__ >= 3 && __clang_minor__ >= 8 && __clang_patchlevel__ >= 0)
119
    (__clang_major__ == 3 && __clang_minor__ >= 8))
120
#define	affected_by_bug_208703
120
#define	affected_by_bug_208703
121
#endif
121
#endif
122
122

Return to bug 217084