mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 11:29:22 +02:00
* apply doremoveinttypeconvs to unary minus and not on 8 and 16 bit targets as well
git-svn-id: trunk@47796 -
This commit is contained in:
parent
d29f95d9e1
commit
9858d9c5e6
@ -3347,14 +3347,14 @@ implementation
|
|||||||
{$if defined(cpu16bitalu)}
|
{$if defined(cpu16bitalu)}
|
||||||
if (resultdef.size <= 2) and
|
if (resultdef.size <= 2) and
|
||||||
(is_32bitint(left.resultdef) or is_64bitint(left.resultdef)) and
|
(is_32bitint(left.resultdef) or is_64bitint(left.resultdef)) and
|
||||||
(left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn]) and
|
(left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn,notn,unaryminusn]) and
|
||||||
checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit,s16bit,u16bit],int64(low(smallint)),high(word)) then
|
checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit,s16bit,u16bit],int64(low(smallint)),high(word)) then
|
||||||
doremoveinttypeconvs(left,generrordef,not foundsint,s16inttype,u16inttype);
|
doremoveinttypeconvs(left,generrordef,not foundsint,s16inttype,u16inttype);
|
||||||
{$endif defined(cpu16bitalu)}
|
{$endif defined(cpu16bitalu)}
|
||||||
{$if defined(cpu8bitalu)}
|
{$if defined(cpu8bitalu)}
|
||||||
if (resultdef.size<left.resultdef.size) and
|
if (resultdef.size<left.resultdef.size) and
|
||||||
is_integer(left.resultdef) and
|
is_integer(left.resultdef) and
|
||||||
(left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn]) and
|
(left.nodetype in [subn,addn,muln,divn,modn,xorn,andn,orn,notn,unaryminusn]) and
|
||||||
checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit],int64(low(shortint)),high(byte)) then
|
checkremovebiginttypeconvs(left,foundsint,[s8bit,u8bit],int64(low(shortint)),high(byte)) then
|
||||||
doremoveinttypeconvs(left,generrordef,not foundsint,s8inttype,u8inttype);
|
doremoveinttypeconvs(left,generrordef,not foundsint,s8inttype,u8inttype);
|
||||||
{$endif defined(cpu8bitalu)}
|
{$endif defined(cpu8bitalu)}
|
||||||
|
Loading…
Reference in New Issue
Block a user