Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / testsuite / gnat.dg / lto10_pkg.ads
blob9be6a78c9c616586554c52c94a4e22387473f5cd
1 package Lto10_Pkg is
3 type U16 is mod 2 ** 16;
5 type Position is record
6 X, Y, Z : U16;
7 end record;
8 for Position'Size use 48;
10 type Pixel is record
11 Pos : Position;
12 end record;
13 pragma Pack (Pixel);
15 Minus_One : Integer := -1;
16 Pix : Pixel := (Pos => (X => 0, Y => 0, Z => 0));
18 end Lto10_Pkg;