D | fenv.c | 147 report(char *expr, test_t v, int e, int exception, int oexception) in report() argument 153 printf("expect %s", e_to_str(exception)); in report() 157 if (e == (exception) || in report() 166 #define TEST_CASE2(expr, exception, oexception) do { \ argument 172 result += report(s(expr), v, e, exception, oexception); \ 175 #define TEST_CASE(expr, exception) do { \ argument 176 if ((exception & (my_overflow|my_underflow)) && my_inexact != 0) \ 177 TEST_CASE2(expr, exception, exception | my_inexact); \ 179 TEST_CASE2(expr, exception, 0); \
|