fpc/tests/webtbs/tw17714.pp
Jonas Maebe 3aea9b134a * make sure that all references used in the inline int->real conversion code
are properly PICified (mantis #17714)

git-svn-id: trunk@16255 -
2010-10-29 16:57:54 +00:00

43 lines
486 B
ObjectPascal

uses
Math;
var
l: longint;
c: cardinal;
i: int64;
q: qword;
s: single;
d: double;
begin
l:=-12345;
c:=56789;
i:=-56789;
q:=12345;
s:=l;
if s<>-12345 then
halt(1);
s:=c;
if s<>56789 then
halt(2);
s:=i;
if s<>-56789 then
halt(3);
s:=q;
if s<>12345 then
halt(4);
d:=l;
if d<>-12345 then
halt(5);
d:=c;
if d<>56789 then
halt(6);
d:=i;
if d<>-56789 then
halt(7);
d:=q;
if d<>12345 then
halt(8);
end.