blob: 43c01081cb64fcc543dcd089c6c9427519e3eec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
|