aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/Wunsuffixed-float-constants-1.c
blob: b4a38d5cb106bc9643cb6f82e19554ddcdb7666b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */
/* { dg-options "-std=gnu99 -Wunsuffixed-float-constants" } */

#define VAL 0.5;

double a = 1.1d;

/* With FLOAT_CONST_DECIMAL64 switched to ON these would have type
   _Decimal64.  */

double b = VAL;		/* { dg-warning "unsuffixed float constant" } */
double c = 1.2;		/* { dg-warning "unsuffixed float constant" } */

/* With FLOAT_CONST_DECIMAL64 switched to ON these are still binary.  */

double d = 0x5.0p1;	/* No warning for hex constant.  */
double e = 3.1i;	/* No warning for imaginary constant.  */