mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00

64 bit upcasts, as the result can be negative when evaluated in 64 bit (reported on irc, please file bug reports) git-svn-id: trunk@27725 -
18 lines
228 B
ObjectPascal
18 lines
228 B
ObjectPascal
{ %opt=-O2 }
|
|
|
|
var
|
|
a,b: longword;
|
|
i: int64;
|
|
l1, l2: longword;
|
|
begin
|
|
a:=1;
|
|
b:=123456;
|
|
i:= (a-b) div 10;
|
|
l1:=longword(i);
|
|
l2:=longword((a-b) div 10);
|
|
writeln(l1);
|
|
writeln(l2);
|
|
if l1<>l2 then
|
|
halt(1);
|
|
end.
|