Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendAda / array_constructor.adb
1 -- RUN: %llvmgcc -S %s
2 procedure Array_Constructor is
3    A : array (Integer range <>) of Boolean := (True, False);
4 begin
5    null;
6 end;