diff options
Diffstat (limited to 'math/test-fenv.c')
-rw-r--r-- | math/test-fenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/test-fenv.c b/math/test-fenv.c index 9edf757ef6..c7b14d6d65 100644 --- a/math/test-fenv.c +++ b/math/test-fenv.c @@ -49,8 +49,8 @@ #define OVERFLOW_EXC 0x08 #define INVALID_EXC 0x10 #define ALL_EXC \ - (INEXACT_EXC | DIVBYZERO_EXC | UNDERFLOW_EXC | OVERFLOW_EXC | \ - INVALID_EXC) + (INEXACT_EXC | DIVBYZERO_EXC | UNDERFLOW_EXC | OVERFLOW_EXC \ + | INVALID_EXC) static int count_errors; |