blob: 9f0927963a159cadb946e82fc0cafe9d4ed6ae13 [file] [log] [blame]
/* Test for bug where fold narrowed decimal floating-point
operations. */
/* { dg-options "-std=gnu99" } */
extern void abort (void);
extern void exit (int);
volatile _Decimal32 f = 1.23456DF;
volatile _Decimal64 d = 1.23456DD;
int
main (void)
{
if ((_Decimal128)((_Decimal64)f * (_Decimal64)f) != (_Decimal128)(d * d))
abort ();
exit (0);
}