Do not split loops rejected by processOneIterationLoop().
[oota-llvm.git] / test / FrontendAda / non_lvalue.adb
1 -- RUN: %llvmgcc -c %s -I%p/Support
2 package body Non_LValue is
3    function A (Y : U) return String is
4    begin
5       return Y.X.B;
6    end;
7 end;