aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr82389.c
blob: 798bd841e8c0d73bf79bfb4d338034d73d11c698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* PR tree-optimization/82389 */

void bar (short);

void
foo (void)
{
  short a[5];
  int b;
  for (b = -1290603998; b < 5; b++)
    a[b] = 0;
  bar (a[3]);
}