mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 09:26:15 +02:00
Use tcgint typecast instead of aint, as it is the type of the second parameter of loadconst taicpu method
git-svn-id: trunk@42281 -
This commit is contained in:
parent
4cd5a72d13
commit
af03c0208b
@ -678,8 +678,8 @@ unit aoptx86;
|
|||||||
case taicpu(p).opsize Of
|
case taicpu(p).opsize Of
|
||||||
S_B: taicpu(hp1).loadConst(0,l Xor $ff);
|
S_B: taicpu(hp1).loadConst(0,l Xor $ff);
|
||||||
S_W: taicpu(hp1).loadConst(0,l Xor $ffff);
|
S_W: taicpu(hp1).loadConst(0,l Xor $ffff);
|
||||||
S_L: taicpu(hp1).loadConst(0,l Xor aint($ffffffff));
|
S_L: taicpu(hp1).loadConst(0,l Xor tcgint($ffffffff));
|
||||||
S_Q: taicpu(hp1).loadConst(0,l Xor aint($ffffffffffffffff));
|
S_Q: taicpu(hp1).loadConst(0,l Xor tcgint($ffffffffffffffff));
|
||||||
else
|
else
|
||||||
Internalerror(2017050703)
|
Internalerror(2017050703)
|
||||||
end;
|
end;
|
||||||
@ -696,8 +696,8 @@ unit aoptx86;
|
|||||||
case taicpu(p).opsize Of
|
case taicpu(p).opsize Of
|
||||||
S_B: taicpu(p).loadConst(0,l Xor $ff);
|
S_B: taicpu(p).loadConst(0,l Xor $ff);
|
||||||
S_W: taicpu(p).loadConst(0,l Xor $ffff);
|
S_W: taicpu(p).loadConst(0,l Xor $ffff);
|
||||||
S_L: taicpu(p).loadConst(0,l Xor aint($ffffffff));
|
S_L: taicpu(p).loadConst(0,l Xor tcgint($ffffffff));
|
||||||
S_Q: taicpu(p).loadConst(0,l Xor aint($ffffffffffffffff));
|
S_Q: taicpu(p).loadConst(0,l Xor tcgint($ffffffffffffffff));
|
||||||
else
|
else
|
||||||
Internalerror(2017050702)
|
Internalerror(2017050702)
|
||||||
end;
|
end;
|
||||||
@ -712,8 +712,8 @@ unit aoptx86;
|
|||||||
case taicpu(p).opsize Of
|
case taicpu(p).opsize Of
|
||||||
S_B: taicpu(p).loadConst(0,l Xor $ff);
|
S_B: taicpu(p).loadConst(0,l Xor $ff);
|
||||||
S_W: taicpu(p).loadConst(0,l Xor $ffff);
|
S_W: taicpu(p).loadConst(0,l Xor $ffff);
|
||||||
S_L: taicpu(p).loadConst(0,l Xor aint($ffffffff));
|
S_L: taicpu(p).loadConst(0,l Xor tcgint($ffffffff));
|
||||||
S_Q: taicpu(p).loadConst(0,l Xor aint($ffffffffffffffff));
|
S_Q: taicpu(p).loadConst(0,l Xor tcgint($ffffffffffffffff));
|
||||||
else
|
else
|
||||||
Internalerror(2017050701)
|
Internalerror(2017050701)
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user