Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
small_alignment.ads
blob: fbedf47d1310ee86a1fa4007acb8248e03cd9530 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Small_Alignment
is
type
Int
is
range
-
512
..
511
;
for
Int
'Alignment use 1;
type R is record
I: Int;
end record;
Pragma Pack (R);
end Small_Alignment;