|
@@ -408,6 +408,9 @@ test_single_exception (const char *test_name,
|
|
|
int fe_flag,
|
|
|
const char *flag_name)
|
|
|
{
|
|
|
+/* Don't perform these checks if we're compiling with clang, because clang
|
|
|
+ doesn't bother to set floating-point exceptions properly */
|
|
|
+#ifndef USECLANG
|
|
|
#ifndef TEST_INLINE
|
|
|
int ok = 1;
|
|
|
if (exception & exc_flag)
|
|
@@ -445,6 +448,7 @@ test_single_exception (const char *test_name,
|
|
|
++noErrors;
|
|
|
|
|
|
#endif
|
|
|
+#endif // USECLANG
|
|
|
}
|
|
|
|
|
|
|