aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/complex-5.c
blob: 59ddf68be84911eb638881be514070457d19fcf2 (plain)
1
2
3
4
5
6
7
8
9
int foo(__complex__ int z0, __complex__ int z1)
{
  return z0 != 0 || z1 != 0;
}

int foo1(__complex__ int z0, __complex__ int z1)
{
  return z0 == 0 && z1 == 0;
}