PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gnat.dg / inline12.adb
blobe73f3c1aeb603a2fcde616283b6f6091dc6a25f1
1 -- PR ada/69219
2 -- Testcae by yuta tomino <demoonlit@panathenaia.halfmoon.jp> */
4 -- { dg-do compile }
6 procedure Inline12 is
8 procedure NI;
10 procedure IA;
11 pragma Convention (Intrinsic, IA);
12 pragma Inline_Always (IA);
14 procedure IA is
15 begin
16 NI;
17 end;
19 procedure NI is null;
21 begin
22 IA;
23 end;