blob: 096cc0c9b89e7d37146dad1e4c75d342aff18126 [file] [log] [blame]
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
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;
}