aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr83581.c
blob: c145effb88a5a416d3fc5b2ce2ecbb959161f47a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* PR tree-optimization/83581 */
/* { dg-do compile } */
/* { dg-options "-O3 -fno-tree-copy-prop -fno-tree-loop-im" } */

int a, b, c;

int
foo (int x)
{
  int *d = &x;
  while (a < 1)
    {
      for (b = 0; b < 2; ++b)
        {
          *d += !!x + 1;
          d = &c;
        }
      ++a;
    }
  return *d;
}