* x86-64 can handle overflows in 64 bit multiplications directly, part of resolving #39450

This commit is contained in:
florian 2021-11-24 23:06:38 +01:00
parent 65ef6f1f37
commit 5bddb3a435

View File

@ -30,8 +30,9 @@ interface
type
tx8664addnode = class(tx86addnode)
procedure second_addordinal; override;
procedure second_mul;
function use_generic_mul64bit: boolean; override;
procedure second_addordinal; override;
procedure second_mul;
end;
implementation
@ -43,6 +44,11 @@ interface
cgbase,cgutils,cga,cgobj,hlcgobj,cgx86,
tgobj;
function tx8664addnode.use_generic_mul64bit: boolean;
begin
result:=false;
end;
{*****************************************************************************
Addordinal
*****************************************************************************}