* snames.ads-tmpl (Name_Ivdep): New pragma-related name.
[official-gcc.git] / gcc / testsuite / gnat.dg / stack_check2.adb
blob4a3008ba02b2bcdf8d9a15bf37515c36267a27a5
1 -- { dg-do run }
2 -- { dg-options "-fstack-check" }
4 -- This test requires architecture- and OS-specific support code for unwinding
5 -- through signal frames (typically located in *-unwind.h) to pass. Feel free
6 -- to disable it if this code hasn't been implemented yet.
8 procedure Stack_Check2 is
10 function UB return Integer is
11 begin
12 return 2048;
13 end;
15 type A is Array (Positive range <>) of Integer;
17 procedure Consume_Stack (N : Integer) is
18 My_A : A (1..UB); -- 8 KB dynamic
19 begin
20 My_A (1) := 0;
21 if N <= 0 then
22 return;
23 end if;
24 Consume_Stack (N-1);
25 end;
27 Task T;
29 Task body T is
30 begin
31 begin
32 Consume_Stack (Integer'Last);
33 raise Program_Error;
34 exception
35 when Storage_Error => null;
36 end;
38 Consume_Stack (128);
39 end;
41 begin
42 null;
43 end;