Transform: "icmp eq (trunc (lshr(X, cst1)), cst" to "icmp (and X, mask), cst"
[oota-llvm.git] / test / FrontendAda / element_copy.adb
1 -- RUN: %llvmgcc -S -O2 %s -I%p/Support -o - | grep 105 | count 2
2 package body Element_Copy is
3    function F return VariableSizedField is
4       X : VariableSizedField;
5    begin
6       return X;
7    end;
8 end;