mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 02:06:12 +02:00
* A_MOVSL renamed to A_MOVSD
This commit is contained in:
parent
47789bef1c
commit
ffb2785d2b
@ -242,7 +242,7 @@ unit cgcpu;
|
|||||||
case opsize of
|
case opsize of
|
||||||
S_B : list.concat(Taicpu.Op_none(A_MOVSB,S_NO));
|
S_B : list.concat(Taicpu.Op_none(A_MOVSB,S_NO));
|
||||||
S_W : list.concat(Taicpu.Op_none(A_MOVSW,S_NO));
|
S_W : list.concat(Taicpu.Op_none(A_MOVSW,S_NO));
|
||||||
S_L : list.concat(Taicpu.Op_none(A_MOVSL,S_NO));
|
S_L : list.concat(Taicpu.Op_none(A_MOVSD,S_NO));
|
||||||
end;
|
end;
|
||||||
ungetregister(list,NR_EDI);
|
ungetregister(list,NR_EDI);
|
||||||
ungetregister(list,NR_ECX);
|
ungetregister(list,NR_ECX);
|
||||||
@ -389,7 +389,10 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.47 2004-02-27 10:21:05 florian
|
Revision 1.48 2004-04-09 14:36:05 peter
|
||||||
|
* A_MOVSL renamed to A_MOVSD
|
||||||
|
|
||||||
|
Revision 1.47 2004/02/27 10:21:05 florian
|
||||||
* top_symbol killed
|
* top_symbol killed
|
||||||
+ refaddr to treference added
|
+ refaddr to treference added
|
||||||
+ refsymbol to treference added
|
+ refsymbol to treference added
|
||||||
|
@ -1459,12 +1459,12 @@ unit cgx86;
|
|||||||
list.concat(Taicpu.op_none(A_MOVSQ,S_NO))
|
list.concat(Taicpu.op_none(A_MOVSQ,S_NO))
|
||||||
else
|
else
|
||||||
{$endif cpu64bit}
|
{$endif cpu64bit}
|
||||||
list.concat(Taicpu.op_none(A_MOVSL,S_NO));
|
list.concat(Taicpu.op_none(A_MOVSD,S_NO));
|
||||||
end;
|
end;
|
||||||
if len>=4 then
|
if len>=4 then
|
||||||
begin
|
begin
|
||||||
dec(len,4);
|
dec(len,4);
|
||||||
list.concat(Taicpu.op_none(A_MOVSL,S_NO));
|
list.concat(Taicpu.op_none(A_MOVSD,S_NO));
|
||||||
end;
|
end;
|
||||||
if len>=2 then
|
if len>=2 then
|
||||||
begin
|
begin
|
||||||
@ -1791,7 +1791,10 @@ unit cgx86;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.119 2004-03-11 19:35:05 peter
|
Revision 1.120 2004-04-09 14:36:05 peter
|
||||||
|
* A_MOVSL renamed to A_MOVSD
|
||||||
|
|
||||||
|
Revision 1.119 2004/03/11 19:35:05 peter
|
||||||
* fixed concatcopy end bytes copy broken by 64bits patch
|
* fixed concatcopy end bytes copy broken by 64bits patch
|
||||||
|
|
||||||
Revision 1.118 2004/03/10 22:52:03 peter
|
Revision 1.118 2004/03/10 22:52:03 peter
|
||||||
|
Loading…
Reference in New Issue
Block a user