fpc/tests/webtbs/tw25361.pp
Jonas Maebe 7be4e20307 * also don't put a value in registers if it is converted from a type that can
be held in one kind of register to a type that can be held in another kind
    of register (mantis #25361)

git-svn-id: trunk@26128 -
2013-11-24 12:49:23 +00:00

18 lines
163 B
ObjectPascal

{ %norun }
type
float64=record
high,low: longint;
end;
procedure foo(x: double);
var
a: float64 absolute x;
begin
writeln(a.low);
end;
begin
end.