Add spliceFunction to the CallGraph interface. This allows users to efficiently
[llvm.git] / test / FrontendAda / array_range_ref.adb
blob037c5aa8b6f012d1401fcedccc34895da0e55b64
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;