aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/981001-3.c
blob: 5f6458757ac533ec0e591394adad34bf58f890b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define P(a, b) P1(a,b)
#define P1(a,b) a##b

#define FLT_MIN_EXP (-125)
#define DBL_MIN_EXP (-1021)

#define MIN_EXP P(FLT,_MIN_EXP)

#define FLT FLT
int f1 = MIN_EXP;

#undef FLT
#define FLT DBL
int f2 = MIN_EXP;