1 /* PR tree-optimization/51246 */
2 
3 int a, *b;
4 
5 void
test(void)6 test (void)
7 {
8   while (1)
9     {
10       int c;
11       a = c;
12       b = &c;
13     }
14 }
15