aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr113759.c
blob: 742c1b21cb524772313729e52619efa82dd5b126 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* PR tree-optimization/113759 */

extern short t[];

int
foo (int c, int b)
{
  if (b < 0)
    __builtin_unreachable ();
  if (c <= 0)
    __builtin_unreachable ();
  int d;
  for (; c >= 0; c--) 
    {
      int a = b + c;
      d = t[a];
      t[a] = 0;
    }
  return d;
}