fpc/tests/tbs/tb0618.pp
Jonas Maebe 8c0d9b581c * don't write the destination register in a_load_ref_reg_unaligned() before
the reference has been used for the last time, as the destination
    register could be the base or index register of the reference

git-svn-id: trunk@33393 -
2016-03-30 20:04:31 +00:00

43 lines
620 B
ObjectPascal

type
PStreamRec= ^TStreamRec;
TStreamRec = Packed Record
ObjType : byte;
Next : PStreamRec;
end;
const
BaseRec : PStreamRec= nil;
RType1 : TStreamRec = (
ObjType : 79
);
RType2 : TStreamRec = (
objtype : 80
);
procedure RegisterType(var R : TStreamRec);
var
P : PStreamRec;
begin
P := BaseRec;
while (P <> nil) and (P^.Objtype <> R.ObjType) do
P:=P^.Next;
if not assigned(P) then
begin
R.Next:=BaseRec;
BaseRec:=@R;
end;
{ nothing to do here
else
P:=@R; }
end;
begin
RegisterType(Rtype1);
RegisterType(RType2);
end.