mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-22 11:41:07 +08:00
* gnat.dg/nested_proc.adb: New test.
From-SVN: r152115
This commit is contained in:
parent
9f62cb922f
commit
01c3cf4d51
@ -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.
|
||||
|
33
gcc/testsuite/gnat.dg/nested_proc.adb
Normal file
33
gcc/testsuite/gnat.dg/nested_proc.adb
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user