Files
clang-p2996/polly/test/CodeGen/single_do_loop_scev_replace.c
Tobias Grosser 39913e3648 test: Switch to new atomic instructions
This fixes the test with recent versions of LLVM that do not support
the old atomic instructions any more.

llvm-svn: 145402
2011-11-29 14:51:05 +00:00

33 lines
395 B
C

#define N 20
#include "limits.h"
#include <stdio.h>
int A[2 * N];
void single_do_loop_scev_replace() {
int i;
__sync_synchronize();
i = 0;
do {
A[2 * i] = i;
++i;
} while (i < N);
__sync_synchronize();
}
int main () {
int i;
single_do_loop_scev_replace();
fprintf(stdout, "Output %d\n", A[0]);
if (A[2 * N - 2] == N - 1)
return 0;
else
return 1;
}