Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / testsuite / gnat.dg / opt75_pkg.adb
blob4424e70ec8d4a186ff16a44c5c467b4ba76e57e1
1 package body Opt75_Pkg is
3 overriding procedure Adjust (Object : in out T) is
4 begin
5 if Object.Ref /= Empty_Rec'Access then
6 System.Atomic_Counters.Increment (Object.Ref.Counter);
7 end if;
8 end;
10 A : constant Arr := (others => (others => Empty));
12 end Opt75_Pkg;