Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / dfp / constants-pedantic.c
blobbe81b0fc44a5236a38e43c0ca546cc69c1127606
1 /* { dg-do compile } */
2 /* { dg-options "-pedantic" } */
4 /* N1150 6: Constants.
5 C99 6.4.4.2: Floating constants. */
7 #include "dfp-dbg.h"
9 _Decimal32 a = 1.1df; /* { dg-warning "GCC extension|ISO C" } */
10 _Decimal32 b = -.003DF; /* { dg-warning "GCC extension|ISO C" } */
11 _Decimal64 c = 11e-1dl; /* { dg-warning "GCC extension|ISO C" } */
12 _Decimal64 d = -.3DL; /* { dg-warning "GCC extension|ISO C" } */
13 _Decimal128 e = 000.3e0dl; /* { dg-warning "GCC extension|ISO C" } */
14 _Decimal128 f = 3000300030003e0DL; /* { dg-warning "GCC extension|ISO C" } */