Do not create the temporary array for reductions into VAR_DECL, PARM_DECL, and RESULT...
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / tree-ssa / pr34123.c
blob81dbf3aacdcbe1210b501d6d2d50c1aa7f2af57d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-loop-linear" } */
4 /* Testcase by Martin Michlmayr <tbm@cyrius.com> */
6 static unsigned char sbox[256] = {
7 };
8 void MD2Transform (unsigned char state[16])
10 unsigned char t = 0;
11 int i, j;
12 for (i = 0; i < 16; i++)
14 for (j = 0; j < 2; j++)
15 t = (state[j] ^= sbox[t]);
16 t += i;