mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 20:49:09 +02:00
* Use A_NEGU (without overflow check) for OP_NEG op_reg_reg
git-svn-id: trunk@21615 -
This commit is contained in:
parent
ca497405b8
commit
0462dc3ca7
@ -1057,7 +1057,8 @@ var
|
|||||||
begin
|
begin
|
||||||
case Op of
|
case Op of
|
||||||
OP_NEG:
|
OP_NEG:
|
||||||
list.concat(taicpu.op_reg_reg(A_NEG, dst, src));
|
{ discard overflow checking }
|
||||||
|
list.concat(taicpu.op_reg_reg(A_NEGU{A_NEG}, dst, src));
|
||||||
OP_NOT:
|
OP_NOT:
|
||||||
begin
|
begin
|
||||||
list.concat(taicpu.op_reg_reg(A_NOT, dst, src));
|
list.concat(taicpu.op_reg_reg(A_NOT, dst, src));
|
||||||
|
Loading…
Reference in New Issue
Block a user