Mercurial > hg > CbC > CbC_gcc
view libgomp/testsuite/libgomp.graphite/force-parallel-6.c @ 63:b7f97abdc517 gcc-4.6-20100522
update gcc from gcc-4.5.0 to gcc-4.6
author | ryoma <e075725@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 24 May 2010 12:47:05 +0900 |
parents | 77e2b8dfacca |
children | 04ced10e8804 |
line wrap: on
line source
#define N 500 int foo(void) { int i, j, k; int X[2*N], Y[2*N], B[2*N]; int A[2*N][2*N], C[2*N][2*N]; for (i = 1; i <= N; i++) { X[i] = Y[i] + 10; for (j = 1; j <= N; j++) { B[j] = A[j][N]; for (k = 1; k <= N; k++) { A[j+1][k] = B[j] + C[j][k]; } Y[i+j] = A[j+1][N]; } } return A[1][5]*B[6]; } int main(void) { foo(); return 0; } /* Check that parallel code generation part make the right answer. */ /* { dg-final { scan-tree-dump-times "1 loops carried no dependency" 1 "graphite" } } */ /* { dg-final { cleanup-tree-dump "graphite" } } */ /* { dg-final { scan-tree-dump-times "loopfn.0" 5 "optimized" } } */ /* { dg-final { cleanup-tree-dump "parloops" } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */