Commit 01c3cf4d by Eric Botcazou Committed by Eric Botcazou

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

From-SVN: r152115
parent 9f62cb92
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.
......
-- { 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;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment