* gcc-interface/decl.c (gnat_to_gnu_entity): Only set the TYPE_ALIGN_OK
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / vfa1.ads
blobcf918c20a03f1c75b6a74a309777d2f7366275f6
1 -- { dg-do compile }
2 -- { dg-options "-g" }
4 package VFA1 is
6 type Rec is record
7 A : Short_Integer;
8 B : Short_Integer;
9 end record;
11 type Rec_VFA is new Rec;
12 pragma Volatile_Full_Access (Rec_VFA);
14 end VFA1;