aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr13066-1.c
blob: c2930f95df65ee1686ebefb8d06e154a4327ac37 (plain)
1
2
3
4
5
6
7
8
9
10
void *g, *c;
int a, b;

int f()
{
  if ((0 == a) != (b || g == c))
    return 1;
  return 0;
}