aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr51246.c
blob: c206d8689f1ac138968bb62de6e7bf0f84825a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* PR tree-optimization/51246 */

int a, *b;

void
test (void)
{
  while (1)
    {
      int c;
      a = c;
      b = &c;
    }
}