diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/c99-math.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f09c09e..3b53680 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-07-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * gcc.dg/c99-math.h: Fix typo. + 2007-07-02 Jakub Jelinek <jakub@redhat.com> PR libgomp/32468 diff --git a/gcc/testsuite/gcc.dg/c99-math.h b/gcc/testsuite/gcc.dg/c99-math.h index 3f42f67..2f3054d 100644 --- a/gcc/testsuite/gcc.dg/c99-math.h +++ b/gcc/testsuite/gcc.dg/c99-math.h @@ -45,7 +45,7 @@ extern void abort(void); if (!isinf (huge)) \ abort (); \ \ - if (isnan (norm)) \ + if (isinf (norm)) \ abort (); \ \ if (isinf (zero)) \ |