aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr91204.c
blob: dc267329eda31c8319e5d6cac7063bc1a7087969 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR target/91204 */

int a, b, c[64];

void
foo (void)
{
  int i;
  for (i = 2; i < 64; i++)
    c[i] &= b ^ c[i] ^ c[i - 2];
}