aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/xcsebug.c
blob: 43a30cce43b4df0fb2efdf9e753163ed5d9071c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int g1;
int g2;

void
foo (void)
{
  int i = 1;
  int x;

  x = g1;
  (*(&g1 + i - 1)) = x + 1;
  x = g1;
  (*(&g1 + i - 1)) = x + 1;
  g1++;
}