Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendC / 2007-11-07-CopyAggregateAlign.c
1 // RUN: %llvmgcc -S %s -o - | grep "align 2" | count 6
2 struct A { char s, t, u, v; short a; };
3 void q() { struct A a, b; a = b; }