Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / ltrans-3.c
blob0cb266f4cc49615fc16432deb807afb4a4791fe8
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -ftree-loop-linear -fdump-tree-ltrans-all" } */
4 double u[1782225];
5 int foo(int N, int *res)
7 unsigned int i, j;
8 double sum = 0;
9 for (i = 0; i < N; i++)
11 for (j = 0; j < N; j++)
13 sum = sum + u[i + 1335 * j];
16 *res = sum + N;
19 /* { dg-final { scan-tree-dump-times "transformed loop" 1 "ltrans"} } */
20 /* { dg-final { cleanup-tree-dump "ltrans" } } */