This patch reads the change in access functions from imported JSCOP file. A test case is also added. llvm-svn: 134991
18 lines
177 B
C
18 lines
177 B
C
int A[100];
|
|
int B[100];
|
|
|
|
int memaccess_simple()
|
|
{
|
|
int i, j;
|
|
for (i = 0; i < 12; i++) {
|
|
A[i] = i;
|
|
}
|
|
|
|
for (i = 0; i < 12; i++) {
|
|
B[i] = i;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|