2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr25481.c
blob3072e5ecb76d081073db64ff9a683207ec546ddd
1 /* { dg-do compile } */
3 struct s {
4 int *blah;
5 };
7 static struct s array[] = {
8 { 0 }
9 };
11 void
12 foo (struct s *p)
14 unsigned int n = 1;
15 struct s *q = &array[n];
16 while (p < q)
17 p++;