tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git] / gcc / testsuite / gnat.dg / global2.ads
blob4de3158a4a2fc588275fed46b616ef7266d6a2be
1 package Global2 is
2 type Int_Acc is access Integer;
3 X : constant Int_Acc := new Integer'(34);
4 procedure Change_X with Global => (In_Out => X);
5 procedure Change2_X with Depends => (X => X);
6 end Global2;