Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2003-11-16-StaticArrayInit.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3 void bar () {
4  static char x[10];
5  static char *xend = x + 10;
6 }
7
8