fpc/tests/webtbs/tw30035.pp
Jonas Maebe 1850cb4ccc * don't look at the resultdef, but at the defs of the operands to decide
whether a multiplication needs to be signed or unsigned (can be different
    in case of a 32x32->64 multiplication) (mantis #30035)

git-svn-id: trunk@33539 -
2016-04-20 22:17:15 +00:00

15 lines
216 B
ObjectPascal

var
i64: Int64;
qa, qb: DWord;
begin
qa := 2147483648;
qb := 536870912;
{$R-}{$Q-}
i64 := int64(qa) * int64(qb);
if i64 <> 1152921504606846976 then
begin
Writeln('Error!');
Halt(1);
end;
end.