fpc/tests/webtbs/tw29933.pp
Jonas Maebe 2a1f2b9fd9 * fixed a_load_regconst_subsetreg_intern() when loading a 32 bit register
to a non-zero bit offset in a subsetreg (mantis #29933)

git-svn-id: trunk@33498 -
2016-04-13 17:09:31 +00:00

35 lines
466 B
ObjectPascal

{$mode objfpc}
type
TPoint =
{$ifndef FPC_REQUIRES_PROPER_ALIGNMENT}
packed
{$endif FPC_REQUIRES_PROPER_ALIGNMENT}
record
X : Longint;
Y : Longint;
end;
function Point(x,y : Integer) : TPoint; inline;
begin
Point.x:=x;
Point.y:=y;
end;
procedure test(p: tpoint);
begin
if (p.x<>6) or
(p.y<>4) then
halt(1)
end;
var
pt: tpoint;
indent, secondy: longint;
begin
indent:=5;
secondy:=2;
test(Point(Indent+1,secondy+2));
end.