llvm-project/polly/test/TempScop/reduction-with-added-immedi...

13 lines
135 B
C

#define NUM 128
int A[NUM];
int R;
int not_a_reduction(void) {
int i;
for (i = 0; i < NUM; i++) {
R += 1 + A[i];
}
return R;
}