blob: 43c01081cb64fcc543dcd089c6c9427519e3eec9 [file]
with System;
package Allocator_Maxalign2 is
type Block is record
X : Integer;
end record;
for Block'Alignment use Standard'Maximum_Alignment;
Addr : System.Address;
procedure Check;
end;