|
@@ -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.
|