aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr81053.c
blob: 98ab95dadeb90ac784d7bc41209b0c75d83e524d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */

int a, b[2], c, d;

void fn1 ()
{ 
  for (; d < 2; d++)
    { 
      b[d] = a;
      a = c;
    }
}