Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
gnat.dg
/
max_align.adb
blob: 702bbaca4492e8d59560d5fcf38d95dfc07ee6c7 [
file
] [
log
] [
blame
]
--
{
dg
-
do
compile
}
procedure
Max_Align
is
type
Block
is
record
X
:
Integer
;
end
record
;
for
Block
'Alignment use Standard'
Maximum_Alignment
;
type
Block_Access
is
access
Block
;
Ptr
:
Block_Access
:=
new
Block
;
begin
null
;
end
;