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 / pr13066-1.c
1 void *g, *c;
2 int a, b;
3
4 int f()
5 {
6   if ((0 == a) != (b || g == c))
7     return 1;
8   return 0;
9 }
10