* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-math-double-1.c
blob54bdf60dfe77a2a121df821ecbfdc94807d7a046
1 /* { dg-do run { target *-*-solaris2.1[0-9]* } } */
2 /* { dg-options "-std=c99 -O" } */
4 #include <math.h>
5 #include "c99-math.h"
7 int main(void)
9 double nan = NAN;
10 double inf = INFINITY;
11 double huge = HUGE_VAL;
12 double norm = __DBL_MIN__;
13 double zero = 0.0;
15 C99_MATH_TESTS (nan, inf, huge, norm, zero)
17 return 0;