diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/dfp/constants-c99.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/dfp/constants-c99.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/dfp/constants-c99.c b/gcc/testsuite/gcc.dg/dfp/constants-c99.c new file mode 100644 index 000000000..6a48bf501 --- /dev/null +++ b/gcc/testsuite/gcc.dg/dfp/constants-c99.c @@ -0,0 +1,12 @@ +/* { dg-do compile } */ +/* { dg-options "-std=c99 -Wno-overflow" } */ + +/* N1150 6: Constants. + C99 6.4.4.2: Floating constants. */ + +_Decimal32 a = 1.1df; /* { dg-error "" } */ +_Decimal32 b = -.003DF; /* { dg-error "" } */ +_Decimal64 c = 11e-1dl; /* { dg-error "" } */ +_Decimal64 d = -.3DL; /* { dg-error "" } */ +_Decimal128 e = 000.3e0dl; /* { dg-error "" } */ +_Decimal128 f = 3000300030003e0DL; /* { dg-error "" } */ |