* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / complex-5.c
blob59ddf68be84911eb638881be514070457d19fcf2
1 int foo(__complex__ int z0, __complex__ int z1)
3 return z0 != 0 || z1 != 0;
6 int foo1(__complex__ int z0, __complex__ int z1)
8 return z0 == 0 && z1 == 0;