aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/stor.c
blob: 57981eff5a63049c6c8aed770aaf84751c4db510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define C 1

foo (p)
     int *p;
{
  p[0] = C;
  p[1] = C;
  p[2] = C;
  p[3] = C;
  p[4] = C;
  p[5] = C;
}