* gcc.dg/stack-check-5.c: Skip with -fstack-protector.
[official-gcc.git] / gcc / testsuite / gnat.dg / loop_optimization18_pkg.ads
blob9fb3311ca031e7583f2fc426bbfa35aaf50ed58b
1 with Unchecked_Conversion;
3 package Loop_Optimization18_Pkg is
5 type Arr is array (Integer range <>) of Natural;
7 type Rec (UB : Integer) is record
8 L : Arr (1 .. UB);
9 end record;
11 type Byte_Array_Type is new String (1..4);
13 function Conv is new Unchecked_Conversion (Byte_Array_Type, Integer);
15 end Loop_Optimization18_Pkg;