33 lines
712 B
Ada
33 lines
712 B
Ada
-- { dg-do compile }
|
|
-- { dg-options "-O2 -fno-inline -fdump-tree-optimized" }
|
|
-- { dg-additional-options "-cargs --param=sra-max-scalarization-size-Ospeed=32 -margs" { target aarch64-*-* powerpc*-*-* } }
|
|
|
|
procedure Opt39 (I : Integer) is
|
|
|
|
type Rec is record
|
|
I1 : Integer;
|
|
I2 : Integer;
|
|
I3 : Integer;
|
|
I4 : Integer;
|
|
I5 : Integer;
|
|
end record;
|
|
|
|
procedure Set (A : access Rec; I : Integer) is
|
|
Tmp : Rec := A.all;
|
|
begin
|
|
Tmp.I1 := I;
|
|
A.all := Tmp;
|
|
end;
|
|
|
|
R : aliased Rec;
|
|
|
|
begin
|
|
Set (R'Access, I);
|
|
if R.I1 /= I then
|
|
raise Program_Error;
|
|
end if;
|
|
end;
|
|
|
|
-- { dg-final { scan-tree-dump-not "MEM" "optimized" } }
|
|
-- { dg-final { scan-tree-dump-not "tmp" "optimized" } }
|