aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/id-pr45230.c
blob: 8ebf8046e505170d9a07b9bbe1006019c486c592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
unsigned char buf[10];
int
main ()
{
  unsigned off1, len, i;
  unsigned char *p1;
  for (len = 0; len < 8; len++)
    {
      p1 = buf;
      for (i = 0; i < off1; i++)
	*p1++ = '\0';
      for (i = 0; i < len; i++)
	*p1++ = 'a';
    }
}