* gnat.dg/nested_proc.adb: New test.

From-SVN: r152115
This commit is contained in:
Eric Botcazou 2009-09-24 11:52:05 +00:00 committed by Eric Botcazou
parent 9f62cb922f
commit 01c3cf4d51
2 changed files with 37 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-09-24 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/nested_proc.adb: New test.
2009-09-24 Jakub Jelinek <jakub@redhat.com>
* testsuite/gcc.target/i386/pr12329.c: Adjust.

View File

@ -0,0 +1,33 @@
-- { dg-do run }
-- Test that a static link is correctly passed to a subprogram which is
-- indirectly called through an aggregate.
procedure Nested_Proc is
I : Integer := 0;
procedure P1 (X : Integer) is
begin
I := X;
end;
type Func_Ptr is access procedure (X : Integer);
type Arr is array (1..64) of Integer;
type Rec is record
F : Func_Ptr;
A : Arr;
end record;
procedure P2 (R : Rec) is
begin
R.F (1);
end;
begin
P2 ((F => P1'Access, A => (others => 0)));
if I /= 1 then
raise Program_Error;
end if;
end;