aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr103513.c
blob: ca876a9816c32564b53d1a14f41f6ea22bc97d6c (plain)
1
2
3
4
5
6
7
8
int a;
void b(int c) {
  int d = 3;
  d ^= c < 2;
  if (d < 3 && a)
    while (1)
      b(!a);
}