fpc/tests/webtbs/tw13948.pp
Jonas Maebe 5c4f80d6bc * when optimizing temp assignments by simply replacing one temp with
another, it's not enough that the temp sizes are the same, because
    the assignment may only apply to part of them. In such cases,
    perform a regular copy (mantis #13948)

git-svn-id: trunk@13255 -
2009-06-10 19:14:40 +00:00

32 lines
295 B
ObjectPascal

{ %opt=-O2 }
type
tr = record
a,b: longint;
end;
function f: tr;
begin
f.a:=5;
f.b:=6;
end;
procedure test;
var
r: tr;
begin
r.a:=1;
r.b:=2;
r.a:=f.a;
writeln(r.a);
writeln(r.b);
if (r.a<>5) then
halt(1);
if (r.b<>2) then
halt(2);
end;
begin
test;
end.