This version is equivalent to commit ba26ebece8f5be84e9bd6315611d412af797147e in the old git repository. llvm-svn: 130476
12 lines
140 B
C
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;
|
|
}
|