Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / inline22.adb
blob5812c2f04dfd60841aefb09befada0e3c2e84aff
1 -- { dg-compile }
3 procedure Inline22 (L, U : Integer) is
5 type Arr is array (Integer range L .. U) of Boolean;
7 function Get_Zero return Arr;
8 pragma Inline_Always (Get_Zero);
10 function Get_Zero return Arr is
11 begin
12 return (others => False);
13 end;
15 A : Arr;
17 begin
18 A := Get_Zero;
19 end;