1 #include <stdlib.h> 2 main()3int main() 4 { 5 int a[1000], b[1000]; 6 7 for (int i = 0; i < 1000; ++i) 8 a[i] = i; 9 #pragma scop 10 for (int i = 0; i < 1000; ++i) { 11 int c; 12 int d; 13 c = a[i]; 14 d = c; 15 b[i] = c; 16 } 17 #pragma endscop 18 for (int i = 0; i < 1000; ++i) 19 if (b[i] != a[i]) 20 return EXIT_FAILURE; 21 22 return EXIT_SUCCESS; 23 } 24