view gcc/testsuite/gcc.dg/dfp/constants-pedantic.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-std=gnu17 -pedantic" } */

/* N1150 6: Constants.
   C99 6.4.4.2: Floating constants.  */

#include "dfp-dbg.h"

_Decimal32 a = 1.1df;		/* { dg-warning "C2X feature|ISO C" } */
_Decimal32 b = -.003DF;		/* { dg-warning "C2X feature|ISO C" } */
_Decimal64 c = 11e-1dl;		/* { dg-warning "C2X feature|ISO C" } */
_Decimal64 d = -.3DL;		/* { dg-warning "C2X feature|ISO C" } */
_Decimal128 e = 000.3e0dl;	/* { dg-warning "C2X feature|ISO C" } */
_Decimal128 f = 3000300030003e0DL;  /* { dg-warning "C2X feature|ISO C" } */