aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr34458.c
blob: 77154937a63f8a521299d927ea5a090c48d79ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
/* { dg-require-stack-size "1025*4" } */

typedef struct
{
  int data[1024];
}
Lint;
Lint lint_operate (Lint a, long long ammount)
{
  int index;
  Lint ret;
  for (index = 0; index < 24; index++)
    ret.data[index] =
      a.data[index + ammount / 32 + 1] << a.data[index + ammount / 32];
  return ret;
}