OSDN Git Service

PR testsuite/41288
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / c-c++-common / dfp / pr33466.c
1 /* { dg-do compile } */
2
3 /* The suffix for a decimal float constant must use a single case.
4
5    These are invalid for all targets, not just those that support
6     decimal float.  */
7
8 long double dF = 4.5dF;         /* { dg-error "invalid suffix" } */
9 long double Df = 4.5Df;         /* { dg-error "invalid suffix" } */
10 long double dD = 4.5dD;         /* { dg-error "invalid suffix" } */
11 long double Dd = 4.5Dd;         /* { dg-error "invalid suffix" } */
12 long double dL = 4.5dL;         /* { dg-error "invalid suffix" } */
13 long double Dl = 4.5Dl;         /* { dg-error "invalid suffix" } */