Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / c23-float-7b.c
blob00754077c0e8f2e8600226068d3c4bea7298a542
1 /* Test SNAN macros. Runtime exceptions test, to verify NaN is
2 signaling. */
3 /* { dg-do run } */
4 /* { dg-require-effective-target fenv_exceptions_double } */
5 /* { dg-options "-std=c23 -pedantic-errors -fsignaling-nans" } */
6 /* { dg-add-options ieee } */
8 #include <fenv.h>
9 #include <float.h>
11 /* This should be defined if and only if signaling NaNs is supported
12 for the given type. If the testsuite gains effective-target
13 support for targets not supporting signaling NaNs, this test
14 should be made appropriately conditional. */
15 #ifndef DBL_SNAN
16 #error "DBL_SNAN undefined"
17 #endif
19 volatile double d = DBL_SNAN;
21 extern void abort (void);
22 extern void exit (int);
24 int
25 main (void)
27 feclearexcept (FE_ALL_EXCEPT);
28 d += d;
29 if (!fetestexcept (FE_INVALID))
30 abort ();
31 exit (0);