scop.c: extract out expr_collect_access
[pet.git] / tests / static.c
blob4ded833caba4794306c6ae4513adb801cf106934
1 void foo(int n, int A[static n][n])
3 #pragma scop
4 for (int i = 0; i < n; ++i)
5 for (int j = 0; j < n; ++j)
6 A[i][j] = 0;
7 #pragma endscop