1 /* Test DEC_NAN defined in <float.h> with DFP support. */
2 /* { dg-options "-std=c23" } */
7 # error "DEC_NAN not defined"
10 volatile _Decimal32 d
= DEC_NAN
;
12 extern void abort (void);
13 extern void exit (int);
18 (void) _Generic (DEC_NAN
, _Decimal32
: 0);
19 if (!__builtin_isnan (DEC_NAN
))
21 if (!__builtin_isnan (d
))