* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.dg / iec-559-macros-9.c
blob6179a3bfe451cc411bb8d3a15bf3469897ff15e1
1 /* Test __GCC_IEC_559 and __GCC_IEC_559_COMPLEX macros values. */
2 /* { dg-do preprocess { target i?86-*-linux* x86_64-*-linux* powerpc*-*-linux* } } */
3 /* { dg-options "-std=c11" } */
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
18 #if __GCC_IEC_559 < 2
19 # error "__GCC_IEC_559 < 2"
20 #endif
21 #if __GCC_IEC_559_COMPLEX < 2
22 # error "__GCC_IEC_559_COMPLEX < 2"
23 #endif