mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 18:59:11 +02:00
* Xtensa: tcpuunaryminusnode.second_float fixed for double
git-svn-id: trunk@46779 -
This commit is contained in:
parent
97bf6d6677
commit
1edf99c324
@ -236,7 +236,10 @@ implementation
|
|||||||
OS_32:
|
OS_32:
|
||||||
cg.a_op_const_reg_reg(current_asmdata.CurrAsmList,OP_XOR,OS_32,tcgint($80000000),left.location.register,location.register);
|
cg.a_op_const_reg_reg(current_asmdata.CurrAsmList,OP_XOR,OS_32,tcgint($80000000),left.location.register,location.register);
|
||||||
OS_64:
|
OS_64:
|
||||||
|
begin
|
||||||
cg.a_op_const_reg_reg(current_asmdata.CurrAsmList,OP_XOR,OS_32,tcgint($80000000),left.location.registerhi,location.registerhi);
|
cg.a_op_const_reg_reg(current_asmdata.CurrAsmList,OP_XOR,OS_32,tcgint($80000000),left.location.registerhi,location.registerhi);
|
||||||
|
cg.a_load_reg_reg(current_asmdata.CurrAsmList,OS_32,OS_32,left.location.register64.reglo,location.register64.reglo);
|
||||||
|
end;
|
||||||
else
|
else
|
||||||
internalerror(2014033101);
|
internalerror(2014033101);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user