Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendAda / vce.adb
1 -- RUN: %llvmgcc -S %s
2 procedure VCE is
3   S : String (1 .. 2);
4   B : Character := 'B';
5 begin
6   S := 'A' & B;
7 end;