llvm-project/polly/test/CodeGen/OpenMP/invalidate_subfn_scops.c
Tobias Grosser 758053788b Add initial version of Polly
This version is equivalent to commit ba26ebece8f5be84e9bd6315611d412af797147e
in the old git repository.

llvm-svn: 130476
2011-04-29 06:27:02 +00:00

12 lines
140 B
C

#define N 500000
float A[N];
int main() {
int j, k;
for(k = 0; k < N; k++)
for (j = 0; j <= N; j++)
A[j] = k;
return 0;
}