PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / iec-559-macros-1.c
blobbd5d037afc4b7073fa44ae6c2c42417fdeffe974
1 /* Test __GCC_IEC_559 and __GCC_IEC_559_COMPLEX macros values. */
2 /* { dg-do preprocess } */
3 /* { dg-options "" } */
5 #ifndef __GCC_IEC_559
6 # error "__GCC_IEC_559 not defined"
7 #endif
8 #ifndef __GCC_IEC_559_COMPLEX
9 # error "__GCC_IEC_559_COMPLEX not defined"
10 #endif
11 #if __GCC_IEC_559_COMPLEX > __GCC_IEC_559
12 # error "__GCC_IEC_559_COMPLEX > __GCC_IEC_559"
13 #endif
14 #if __GCC_IEC_559_COMPLEX < 0
15 # error "__GCC_IEC_559_COMPLEX < 0"
16 #endif