Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2007-10-30-Volatile.c
1 // RUN: %llvmgcc -S %s -o /dev/null -Wall -Werror
2 void bork() {
3   char * volatile p;
4   volatile int cc;
5   p += cc;
6 }