* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git] / gcc / testsuite / gcc.dg / graphite / scop-sor.c
blobadcdc437c7137037148d86123c160195f3ffd0e9
1 /* { dg-require-effective-target size32plus } */
2 #define SIZE 10000
4 static double P[SIZE][SIZE];
6 void sor(int N1, int N2){
7 int i, j, k;
9 #pragma scop
10 for(i=1; i<N1-1; i++) {
11 for(j=1; j<N2-1; j++) {
12 P[i][j] = (P[i][j] + P[i][j-1] + P[i][j+1] + P[i-1][j] + P[i+1][j]) / 5;
15 #pragma endscop
18 /* { dg-final { scan-tree-dump-times "number of SCoPs: 1" 1 "graphite" } } */