* gcc.dg/float-range-3.c: Use "dg-do compile" dejagnu directive
[official-gcc/alias-decl.git] / gcc / testsuite / gnat.dg / specs / small_alignment.ads
blobfbedf47d1310ee86a1fa4007acb8248e03cd9530
1 -- { dg-do compile }
3 package Small_Alignment is
5 type Int is range -512 .. 511;
6 for Int'Alignment use 1;
8 type R is record
9 I: Int;
10 end record;
11 Pragma Pack (R);
13 end Small_Alignment;