(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
complex-5.c
       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  }