Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2003-11-13-TypeSafety.c
1 // RUN: %llvmgcc -xc %s -S -o - | grep getelementptr
2
3 int *test(int *X, int Y) {
4   return X + Y;
5 }