2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr23424-1.c
blob91950d77a43c012443803f612bf77416c859e6d1
1 /* { dg-do compile } */
2 extern char *x;
3 extern void foo (void);
4 void f (char *s, char *se, char *mp, char *y)
6 while (s != se)
8 char *p;
9 foo ();
10 p = s + *mp;
11 *y++ = *p;
12 s = p;
15 x = s;