1/* This test assumes IEEE float and double.  It also tests long double
2   but makes no assumption about its size or range of values.  */
3
4#include "convert.h"
5
6volatile _Decimal32 sd;
7volatile _Decimal64 dd;
8volatile _Decimal128 td;
9volatile float sf;
10volatile double df;
11volatile long double tf;   /* might actually be df or xf, doesn't matter */
12
13CONVERT_NAN_ALL (t);
14
15int
16main ()
17{
18  CALL_NAN_ALL (t)
19
20  FINISH
21}
22