summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/trampoline4.adb
blob: c79723974d2c7efcd598950b35de67a556e10ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- { dg-do compile { target *-*-linux* } }
-- { dg-options "-ftrampolines -gnatws" }
-- { dg-skip-if "standard descriptors" { hppa*-*-* ia64-*-* powerpc64-*-* } }

procedure Trampoline4 is

  A : Integer;

  type FuncPtr is access function (I : Integer) return Integer;

  function F (I : Integer) return Integer is
  begin
    return A + I;
  end F;

  P : FuncPtr := F'Access;
  I : Integer;

begin
  I := P(0);
end;

-- { dg-final { scan-assembler "GNU-stack.*x" } }