Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr33576.c
blob2470762f7a792fd4eea7f9a94b4c13b7b49386e8
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-loop-linear" } */
4 int a1[6][4][4];
5 short b1[16];
7 int c1;
8 void CalculateQuantParam(void)
10 int i, j, k, temp;
12 for(k=0; k<6; k++)
13 for(j=0; j<4; j++)
14 for(i=0; i<4; i++)
16 temp = (i<<2)+j;
17 a1[k][j][i] = c1/b1[temp];