aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/v.c
blob: 87ac00aef64cdc562607d0b2a46f08b63f68a7f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
main (int *p)
{
  int a;

  a = 0;
  p[1] = a;
  a = 0;
  p[2] = a;
  a = 123456;
  p[3] = a;
}