Do not split loops rejected by processOneIterationLoop().
[oota-llvm.git] / test / FrontendAda / vce.adb
1 -- RUN: %llvmgcc -c %s
2 procedure VCE is
3   S : String (1 .. 2);
4   B : Character := 'B';
5 begin
6   S := 'A' & B;
7 end;