Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / gcc.dg / c11-float-6.c
blobb0381e57884e56867e6aa44d4b22998c3c0556a2
1 /* Test *_IS_IEC_60559 not defined for C11. */
2 /* { dg-do preprocess } */
3 /* { dg-options "-std=c11 -pedantic-errors" } */
5 #include <float.h>
7 #ifdef FLT_IS_IEC_60559
8 #error "FLT_IS_IEC_60559 defined"
9 #endif
11 #ifdef DBL_IS_IEC_60559
12 #error "DBL_IS_IEC_60559 defined"
13 #endif
15 #ifdef LDBL_IS_IEC_60559
16 #error "LDBL_IS_IEC_60559 defined"
17 #endif