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