* gcc.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git] / gcc / testsuite / gnat.dg / allocator_maxalign2.ads
blob43c01081cb64fcc543dcd089c6c9427519e3eec9
1 with System;
3 package Allocator_Maxalign2 is
4 type Block is record
5 X : Integer;
6 end record;
7 for Block'Alignment use Standard'Maximum_Alignment;
9 Addr : System.Address;
11 procedure Check;
12 end;