30 lines
498 B
C
30 lines
498 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
void copy_summary(int b[1000], int a[1000], int pos)
|
||
|
{
|
||
|
b[pos] = 0;
|
||
|
int c = a[pos];
|
||
|
}
|
||
|
|
||
|
#ifdef pencil_access
|
||
|
__attribute__((pencil_access(copy_summary)))
|
||
|
#endif
|
||
|
void copy(int b[1000], int a[1000], int pos);
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int a[2][1000];
|
||
|
|
||
|
for (int i = 0; i < 1000; ++i)
|
||
|
a[0][i] = i;
|
||
|
#pragma scop
|
||
|
for (int i = 0; i < 1000; ++i)
|
||
|
copy(a[1], a[0], i);
|
||
|
#pragma endscop
|
||
|
for (int i = 0; i < 1000; ++i)
|
||
|
if (a[1][i] != a[0][i])
|
||
|
return EXIT_FAILURE;
|
||
|
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|