aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr68951.c
blob: 95c3c324279b4468bbc2421c0d7af1e90c545f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-additional-options "-w" } */

static int g_534[1][1];
int fn1()
{
  int i;
  for (i = 0; i < 4; i++)
    g_534[i + 2][i] ^= 3;
  for (;;)
    ;
}