fpc/tests/webtbs/tw32046.pp
Jonas Maebe 1934285c20 * don't convert "int64(sint32) * cardinal_const" into a 32x32->64
multiplication (mantis #32046)

git-svn-id: trunk@37921 -
2018-01-06 13:44:03 +00:00

17 lines
297 B
ObjectPascal

{$mode delphi}
program Project1;
function add(a, b : Integer) : Int64;
begin
result := Int64(a) * $FFFFFFFF + b;
end;
begin
writeLn(add(200210, 1)); // Linux x86_64: 859895402131951
// Windows i386: -200209
if add(200210, 1)<>859895402131951 then
halt(1);
end.