modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/complex-5.c (about) 1 int foo(__complex__ int z0, __complex__ int z1) 2 { 3 return z0 != 0 || z1 != 0; 4 } 5 6 int foo1(__complex__ int z0, __complex__ int z1) 7 { 8 return z0 == 0 && z1 == 0; 9 }