Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / debug1.ads
blob3ce148cf7b3a5c323f2a5dad4f117c70f6a456bf
1 package debug1 is
3 type Vector is array (Natural range <>) of Natural;
4 type Vector_Access is access Vector;
6 type Data_Line is record
7 Length : Vector (1 .. 1);
8 Line : Vector_Access;
9 end record;
11 type Data_Block is array (1 .. 5) of Data_Line;
12 type Data_Block_Access is access Data_Block;
14 type Vector_Ptr is access Vector;
16 type Meta_Data is record
17 Vector_View : Vector_Ptr;
18 Block_View : Data_Block_Access;
19 end record;
21 end;