OSDN Git Service

PR testsuite/31828
authordanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Oct 2007 02:17:50 +0000 (02:17 +0000)
committerdanglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 2 Oct 2007 02:17:50 +0000 (02:17 +0000)
gcc.dg/float-range-3.c (INFINITY): Define if not defined.
(overflow): Use INFINITY, not FP_INFINITE.
gcc.dg/float-range-4.c: Likewise.
gcc.dg/float-range-5.c: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128947 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/float-range-3.c
gcc/testsuite/gcc.dg/float-range-4.c
gcc/testsuite/gcc.dg/float-range-5.c

index a346eb8..308826e 100644 (file)
@@ -1,3 +1,11 @@
+2007-10-01  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
+
+       PR testsuite/31828
+       gcc.dg/float-range-3.c (INFINITY): Define if not defined.
+       (overflow): Use INFINITY, not FP_INFINITE.
+       gcc.dg/float-range-4.c: Likewise.
+       gcc.dg/float-range-5.c: Likewise.
+
 2007-10-01  Nick Clifton  <nickc@redhat.com>
 
        * gcc.c-torture/execute/20060102-1.c (f): Fix computation to work
index 6a224e1..7fa766f 100644 (file)
@@ -3,17 +3,21 @@
 /* { dg-options "-std=c99" } */
 #include <math.h>
 
+#ifndef INFINITY
+#define INFINITY (__builtin_inff ())
+#endif
+
 void overflow(void)
 {
   float f1 = 3.5E+38f;  /* { dg-warning "floating constant exceeds range" } */
   float f2 = -3.5E+38f; /* { dg-warning "floating constant exceeds range" } */
-  float f3 = FP_INFINITE;
-  float f4 = -FP_INFINITE;
+  float f3 = INFINITY;
+  float f4 = -INFINITY;
 
   double d1 = 1.9E+308;  /* { dg-warning "floating constant exceeds range" } */
   double d2 = -1.9E+308; /* { dg-warning "floating constant exceeds range" } */
-  double d3 = FP_INFINITE;
-  double d4 = -FP_INFINITE;
+  double d3 = INFINITY;
+  double d4 = -INFINITY;
 }
 
 void underflow(void)
index 5607719..2ec38c4 100644 (file)
@@ -3,17 +3,21 @@
 /* { dg-options "-Wno-overflow -std=c99" } */
 #include <math.h>
 
+#ifndef INFINITY
+#define INFINITY (__builtin_inff ())
+#endif
+
 void overflow(void)
 {
   float f1 = 3.5E+38f;  
   float f2 = -3.5E+38f; 
-  float f3 = FP_INFINITE;
-  float f4 = -FP_INFINITE;
+  float f3 = INFINITY;
+  float f4 = -INFINITY;
 
   double d1 = 1.9E+308; 
   double d2 = -1.9E+308;
-  double d3 = FP_INFINITE;
-  double d4 = -FP_INFINITE;
+  double d3 = INFINITY;
+  double d4 = -INFINITY;
 }
 
 void underflow(void)
index c3a2a9e..49742e3 100644 (file)
@@ -4,17 +4,21 @@
 /* { dg-options "-pedantic-errors -std=c99" } */
 #include <math.h>
 
+#ifndef INFINITY
+#define INFINITY (__builtin_inff ())
+#endif
+
 void overflow(void)
 {
   float f1 = 3.5E+38f;  /* { dg-warning "floating constant exceeds range" } */
   float f2 = -3.5E+38f; /* { dg-warning "floating constant exceeds range" } */
-  float f3 = FP_INFINITE;
-  float f4 = -FP_INFINITE;
+  float f3 = INFINITY;
+  float f4 = -INFINITY;
 
   double d1 = 1.9E+308;  /* { dg-warning "floating constant exceeds range" } */
   double d2 = -1.9E+308; /* { dg-warning "floating constant exceeds range" } */
-  double d3 = FP_INFINITE;
-  double d4 = -FP_INFINITE;
+  double d3 = INFINITY;
+  double d4 = -INFINITY;
 }
 
 void underflow(void)