blob: f377c1af5b8fce7b83dc1b00596cac913f3df205 [file] [log] [blame]
/* { dg-do run { target *-*-solaris2.1[0-9]* } } */
/* { dg-options "-std=c99 -O" } */
#include <math.h>
#include "c99-math.h"
int main(void)
{
float nan = NAN;
float inf = INFINITY;
float huge = HUGE_VALF;
float norm = __FLT_MIN__;
float sub = __FLT_MIN__ / 2;
float zero = 0.0f;
C99_MATH_TESTS (nan, inf, huge, norm, sub, zero)
return 0;
}