fpc/tests/tbs/tb0607.pp
Jonas Maebe e704dd8d74 * treat "u32bit-u32bit" as a signed value when removing automatic
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 -
2014-05-03 15:06:16 +00:00

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.