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