aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/alignment3.adb
blob: 2776f5b8aaab7fafbcdc1bd8ad1b0601a2371770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-- { dg-do compile }

with System, Ada.Unchecked_Conversion;
procedure alignment3 is
   
   type Value_Type (Is_Short : Boolean) is record
      case Is_Short is
         when True =>   V : Natural;
         when others => A, B : Natural;
      end case;
   end record;
   
   type Link_Type (Short_Values : Boolean) is record
      Input, Output : Value_Type (Short_Values);
      Initialized : Boolean;
      N_Probes    : Natural;
   end record;
   
   type Link_Access is access Link_Type;
   
   type Natural_Access is access all Natural;
   function To_Natural_Access is
      new Ada.Unchecked_Conversion (System.Address, Natural_Access);
   
   Ptr : Natural_Access;
   
   procedure N_Probes_For (Link : Link_Access)  is
   begin
      Ptr := To_Natural_Access (Link.N_Probes'address);
      Ptr := To_Natural_Access (Link.Initialized'address);
   end;

begin
   null;
end;