This version is equivalent to commit ba26ebece8f5be84e9bd6315611d412af797147e in the old git repository. llvm-svn: 130476
11 lines
98 B
C
11 lines
98 B
C
#define N 10
|
|
|
|
void foo() {
|
|
float A[N];
|
|
|
|
for (int i=0; i < N; i++)
|
|
A[i] = 10;
|
|
|
|
return;
|
|
}
|