Merge reload-branch up to revision 101000
[official-gcc.git] / gcc / testsuite / gcc.dg / c99-math-long-double-1.c
bloba8fa4d21fc1280910c0e66b67cea0337af1c7976
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 long double nan = NAN;
10 long double inf = INFINITY;
11 long double huge = HUGE_VALL;
12 long double norm = __LDBL_MIN__;
13 long double zero = 0.0l;
15 C99_MATH_TESTS (nan, inf, huge, norm, zero)
17 return 0;