mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 22:09:28 +02:00
* fixed some label names
This commit is contained in:
parent
9b38228c7e
commit
805df8c05f
@ -226,7 +226,7 @@ asm
|
|||||||
{ count div 4 for number of dwords to copy }
|
{ count div 4 for number of dwords to copy }
|
||||||
srwi r0,r5,2
|
srwi r0,r5,2
|
||||||
{ if 11 <= count < 63, copy using dwords }
|
{ if 11 <= count < 63, copy using dwords }
|
||||||
blt cr7,LMoveDWords
|
blt cr7,.LMoveDWords
|
||||||
|
|
||||||
{$ifndef ppc603}
|
{$ifndef ppc603}
|
||||||
{ # of dwords to copy to reach 32 byte alignment (*4) }
|
{ # of dwords to copy to reach 32 byte alignment (*4) }
|
||||||
@ -456,7 +456,7 @@ asm
|
|||||||
{ FillCharSmall or FillCharVerySmall) }
|
{ FillCharSmall or FillCharVerySmall) }
|
||||||
cmpl cr7,r4,11
|
cmpl cr7,r4,11
|
||||||
{ if filling with zero, only use dcbz }
|
{ if filling with zero, only use dcbz }
|
||||||
bne cr1, LFillCharNoZero
|
bne cr1, .LFillCharNoZero
|
||||||
{ make r3 point again to the actual store position }
|
{ make r3 point again to the actual store position }
|
||||||
addi r3,r3,4
|
addi r3,r3,4
|
||||||
.LFillCharDCBZLoop:
|
.LFillCharDCBZLoop:
|
||||||
@ -1004,7 +1004,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.55 2003-11-15 19:01:27 florian
|
Revision 1.56 2003-11-23 17:34:27 jonas
|
||||||
|
* fixed some label names
|
||||||
|
|
||||||
|
Revision 1.55 2003/11/15 19:01:27 florian
|
||||||
* fixed rtl to work with the integrated fpc ppc assembler reader
|
* fixed rtl to work with the integrated fpc ppc assembler reader
|
||||||
|
|
||||||
Revision 1.54 2003/09/14 20:33:28 jonas
|
Revision 1.54 2003/09/14 20:33:28 jonas
|
||||||
|
@ -22,7 +22,7 @@ asm
|
|||||||
{ empty/invalid string? }
|
{ empty/invalid string? }
|
||||||
cmplwi cr0,r3,0
|
cmplwi cr0,r3,0
|
||||||
{ if yes, do nothing }
|
{ if yes, do nothing }
|
||||||
beq LStrLenDone
|
beq .LStrLenDone
|
||||||
subi r29,r3,1
|
subi r29,r3,1
|
||||||
.LStrLenLoop:
|
.LStrLenLoop:
|
||||||
lbzu r30,1(r29)
|
lbzu r30,1(r29)
|
||||||
@ -34,7 +34,10 @@ end;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.7 2003-11-15 19:01:27 florian
|
Revision 1.8 2003-11-23 17:34:27 jonas
|
||||||
|
* fixed some label names
|
||||||
|
|
||||||
|
Revision 1.7 2003/11/15 19:01:27 florian
|
||||||
* fixed rtl to work with the integrated fpc ppc assembler reader
|
* fixed rtl to work with the integrated fpc ppc assembler reader
|
||||||
|
|
||||||
Revision 1.6 2003/06/14 12:41:09 jonas
|
Revision 1.6 2003/06/14 12:41:09 jonas
|
||||||
|
Loading…
Reference in New Issue
Block a user