OSDN Git Service

* gcc.c-torture/compile/pr11832.c: XFAIL for mips and powerpc-linux,
[pf3gnuchains/gcc-fork.git] / 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 }