We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8255d98 commit 80c6af2Copy full SHA for 80c6af2
1 file changed
tests/unit-math/test-math.c
@@ -93,7 +93,18 @@ int
93
main (void)
94
{
95
#define INF INFINITY
96
+
97
+#if defined(__clang__)
98
+#pragma clang diagnostic push
99
+/* Suppress Clang's -Wliteral-range warning */
100
+#pragma clang diagnostic ignored "-Wliteral-range"
101
+#endif /* defined(__clang__) */
102
103
#include "test-math.inc.h"
104
105
106
+#pragma clang diagnostic pop
107
108
109
return passed ? 0 : 1;
110
} /* main */
0 commit comments