Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2010-06-11-SaveExpr.c
1 // RUN: %llvmgcc -S %s
2 // Test case by Eric Postpischil!
3 void foo(void)
4 {
5   char a[1];
6   int t = 1;
7   ((char (*)[t]) a)[0][0] = 0;
8 }