mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00

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 -
15 lines
216 B
ObjectPascal
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.
|