Sign in
gnu
/
gcc
/
a6d3012b274f38b20e2a57162106f625746af6c6
/
.
/
gcc
/
testsuite
/
gnat.dg
/
specs
/
alignment1.ads
blob: cffcba138cafa41fde237e5f41cb249a98bd5773 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
package
Alignment1
is
S
:
Natural
:=
20
;
pragma
Volatile
(
S
);
type
Block
is
array
(
1
..
S
)
of
Integer
;
for
Block
'Alignment use 128;
B : Block;
end;