aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr109919-1.c
blob: bb612a1f020d7c14fffb2e96a8478218600562eb (plain)
1
2
3
4
5
6
7
8
9
/* { dg-options "-fno-tree-dce -fno-tree-vrp" } */
int a;
int main() {
  int b = 1;
  while (a) {
    short c = b && ((a || a) & (a * c));
  }
  return 0;
}