Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / pr23433.c
blob464d4b542548eee35226a315e4f0c9793b6901cc
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
4 double transport_sumexp(int numexp)
6 int k,j;
7 double xk1 = 1.0;
8 for(k=1; k<=numexp;k++)
9 for(j=1;j<=3;j++)
10 xk1 += 1.0;
11 return xk1;