Files
clang-p2996/polly/test/CodeGen/constant_condition.c
Tobias Grosser 758053788b Add initial version of Polly
This version is equivalent to commit ba26ebece8f5be84e9bd6315611d412af797147e
in the old git repository.

llvm-svn: 130476
2011-04-29 06:27:02 +00:00

24 lines
219 B
C

#include <string.h>
int A[1];
void constant_condition () {
int a = 0;
int b = 0;
if (a == b)
A[0] = 0;
else
A[0] = 1;
}
int main () {
int i;
A[0] = 2;
constant_condition();
return A[0];
}