aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20140213.c
blob: 3811caa223460d581af1ee24a0daacb02934d322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
static unsigned short
foo (unsigned char *x, int y)
{
  unsigned short r = 0;
  int i;
  for (i = 0; i < y; i++)
    r += x[i];
  return r;
}

int baz (int, unsigned short);

void
bar (unsigned char *x, unsigned char *y)
{
  int i;
  unsigned short key = foo (x, 0x10000);
  baz (0, 0);
  for (i = 0; i < 0x80000; i++)
    y[i] = x[baz (i, key)];
}