aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/builtin_inf.c
blob: 48546e480cf8df12c811b72090f8c98bc6f7de88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
static double d = __builtin_huge_val();
static float f = __builtin_huge_valf();
static long double l = __builtin_huge_vall();
static double di = __builtin_inf();
static float fi = __builtin_inff();
static long double li = __builtin_infl();
static double dn = __builtin_nan("");
static float fn = __builtin_nanf("");
static long double ln = __builtin_nanl("");

/*
 * check-name: __builtin INFINITY / nan()
 */