tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git] / gcc / testsuite / gnat.dg / alignment15.adb
blobe58243d29084abc0dffbee11e6b7ecc63d47ab7b
1 -- { dg-compile }
3 procedure Alignment15 is
4 type T0 is record
5 X : Integer;
6 end record;
7 for T0'Alignment use 0;
9 type T00 is record
10 X : Integer;
11 end record with Alignment => 0;
13 Dummy0 : T0;
14 Dummy00 : T00;
15 begin
16 null;
17 end;