Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / loop_optimization8_pkg1.ads
blobe6f3c7021022c94b7a23b32393ab985445fe0c41
1 with Ada.Finalization;
3 package Loop_Optimization8_Pkg1 is
5 type Array_T is array (Positive range <>) of Natural;
7 type Array_Access_T is access Array_T;
9 type T is new Ada.Finalization.Controlled with record
10 Last : Natural := 0;
11 Elements : Array_Access_T;
12 end record;
14 Empty : T := (Ada.Finalization.Controlled with Last => 0, Elements => null);
16 generic
17 with procedure Action (Info : Natural);
18 procedure Iter;
20 end Loop_Optimization8_Pkg1;