aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/stor.c
blob: 8fd32d6a4b7cc0520502311017b23b5dfab3ceba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-additional-options "-std=gnu89" } */

#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;
}