Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gnat.dg / dse_step.ads
blob8cf0c74ea37ddd019eab39359c78115926d8cb04
1 package Dse_Step is
3 type Counter is record
4 Value : Natural;
5 Step : Natural;
6 end record;
7 pragma Suppress_Initialization (Counter);
9 procedure Do_Step (This : in out Counter);
10 pragma Inline (Do_Step);
12 type My_Counter is new Counter;
13 pragma Suppress_Initialization (My_Counter);
15 procedure Step_From (Start : in My_Counter);
17 Nsteps : Natural := 12;
18 Mv : Natural;
19 end;