* asan.c (handle_builtin_alloca): Deal with all alloca variants.
[official-gcc.git] / gcc / testsuite / gnat.dg / stack_usage4_pkg.ads
blob9bad62776cd025a6c770dd0b38c1ddb3d7f875d3
1 package Stack_Usage4_Pkg is
3 subtype Name_Index_Type is Natural range 1 .. 63;
5 type Bounded_String is record
6 Len : Name_Index_Type;
7 Data : String (Name_Index_Type'Range);
8 end record;
10 function Get return Bounded_String;
12 end Stack_Usage4_Pkg;