* fixed tests for architectures with FPC_COMP_IS_INT64 defined

git-svn-id: trunk@44222 -
(cherry picked from commit 66aa2e1416)
This commit is contained in:
florian 2020-02-20 20:51:46 +00:00
parent 92fc7edd7e
commit 3060799961
2 changed files with 21 additions and 1 deletions

View File

@ -7,7 +7,22 @@ VAR x1, x2 : comp;
Markus Greim / 29.jun.2016 *)
BEGIN
{$ifdef FPC_COMP_IS_INT64}
x1 := 8;
writeln('x1 : ',x1);
x2 := round(x1 / 2);
writeln('x2 = x1/2 should be 4 but is : ', x2);
if x2<>4 then
halt(1);
x2 := round(x1 / 4);
writeln('x2 = x1/4 should be 2 but is : ', x2);
if x2<>2 then
halt(2);
x2 := round(x1 / 8);
writeln('x2 = x1/8 should be 1 and is : ', x2);
if x2<>1 then
halt(3);
{$else FPC_COMP_IS_INT64}
x1 := 8;
writeln('x1 : ',x1);
x2 := x1 / 2;
@ -22,6 +37,7 @@ x2 := x1 / 8;
writeln('x2 = x1/8 should be 1 and is : ', x2);
if x2<>1 then
halt(3);
{$endif FPC_COMP_IS_INT64}
END.

View File

@ -628,7 +628,11 @@ end;
constructor TCompComponent.Create(AOwner: TComponent);
begin
inherited;
{$ifdef FPC_COMP_IS_INT64}
F:=round(4.56);
{$else FPC_COMP_IS_INT64}
F:=4.56;
{$endif FPC_COMP_IS_INT64}
end;
{ TCurrencyComponent }