mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 12:49:33 +02:00
* on 16-bit CPUs remove unnecessary 32-bit conversions of integers, that are
later converted back to 16 bits git-svn-id: trunk@35679 -
This commit is contained in:
parent
6d795df166
commit
8033392554
@ -2868,6 +2868,13 @@ implementation
|
||||
(left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn]) and
|
||||
checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit,s16bit,u16bit,s32bit,u32bit],int64(low(longint)),high(cardinal)) then
|
||||
doremoveinttypeconvs(left,generrordef,not foundsint,s32inttype,u32inttype);
|
||||
{$if defined(cpu16bitalu)}
|
||||
if (resultdef.size <= 2) and
|
||||
(is_32bitint(left.resultdef) or is_64bitint(left.resultdef)) and
|
||||
(left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn]) and
|
||||
checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit,s16bit,u16bit],int64(low(smallint)),high(word)) then
|
||||
doremoveinttypeconvs(left,generrordef,not foundsint,s16inttype,u16inttype);
|
||||
{$endif defined(cpu16bitalu)}
|
||||
{$if defined(cpu8bitalu)}
|
||||
if (resultdef.size<left.resultdef.size) and
|
||||
is_integer(left.resultdef) and
|
||||
|
Loading…
Reference in New Issue
Block a user