tree-optimization/113385 - wrong loop father with early exit vectorization
[official-gcc.git] / gcc / testsuite / gnat.dg / strub_ind2.ads
blobe13865ec49c38f9764b019a0a52b188c807a1fbc
1 package Strub_Ind2 is
2 procedure P (X : Integer);
3 pragma Machine_Attribute (P, "strub", "internal");
5 function F (X : Integer) return Integer;
6 pragma Machine_Attribute (F, "strub");
8 X : Integer := 0;
9 pragma Machine_Attribute (X, "strub");
11 type FT is access function (X : Integer) return Integer;
12 pragma Machine_Attribute (FT, "strub", "at-calls");
14 FP : FT := F'Access;
15 pragma Machine_Attribute (FP, "strub", "at-calls");
17 end Strub_Ind2;