diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-02-28 22:36:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-02-28 22:36:31 +0000 |
commit | 4e141d64a5e933013a479f4e3695f5e9a5a86059 (patch) | |
tree | 99ddae8e5664d52ef5999f20e50833f8537e8cde /sysdeps/powerpc/stpcpy.S | |
parent | b041ebc280681f391cd0a3b4d70e08ec72179952 (diff) | |
download | glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.tar glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.tar.gz glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.tar.bz2 glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.zip |
Update.
* sysdeps/powerpc/fpu/s_copysign.S: Use L() instead of local labels.
* sysdeps/powerpc/submul_1.S: Likewise.
* sysdeps/powerpc/sub_n.S: Likewise.
* sysdeps/powerpc/strcpy.S: Likewise.
* sysdeps/powerpc/strcmp.S: Likewise.
* sysdeps/powerpc/stpcpy.S: Likewise.
* sysdeps/powerpc/rshift.S: Likewise.
* sysdeps/powerpc/mul_1.S: Likewise.
* sysdeps/powerpc/memset.S: Likewise.
* sysdeps/powerpc/lshift.S: Likewise.
* sysdeps/powerpc/addmul_1.S: Likewise.
* sysdeps/powerpc/add_n.S: Likewise.
Diffstat (limited to 'sysdeps/powerpc/stpcpy.S')
-rw-r--r-- | sysdeps/powerpc/stpcpy.S | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/sysdeps/powerpc/stpcpy.S b/sysdeps/powerpc/stpcpy.S index e3d7c1e1d4..eaea26b44b 100644 --- a/sysdeps/powerpc/stpcpy.S +++ b/sysdeps/powerpc/stpcpy.S @@ -1,5 +1,5 @@ /* Optimized stpcpy implementation for PowerPC. - Copyright (C) 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -44,24 +44,24 @@ EALIGN(__stpcpy,4,0) lwz r6,0(r4) addi r7,r7,-0x101 addi r8,r8,0x7f7f - b 2f + b L(g2) -0: lwzu r10,4(r4) +L(g0): lwzu r10,4(r4) stwu r6,4(r3) add r0,r7,r10 nor r9,r8,r10 and. r0,r0,r9 - bne- 1f + bne- L(g1) lwzu r6,4(r4) stwu r10,4(r3) -2: add r0,r7,r6 +L(g2): add r0,r7,r6 nor r9,r8,r6 and. r0,r0,r9 - beq+ 0b + beq+ L(g0) mr r10,r6 /* We've hit the end of the string. Do the rest byte-by-byte. */ -1: rlwinm. r0,r10,8,24,31 +L(g1): rlwinm. r0,r10,8,24,31 stbu r0,4(r3) beqlr- rlwinm. r0,r10,16,24,31 @@ -80,20 +80,20 @@ L(unaligned): lbz r6,0(r4) addi r3,r3,3 cmpwi r6,0 - beq- 2f + beq- L(u2) -0: lbzu r10,1(r4) +L(u0): lbzu r10,1(r4) stbu r6,1(r3) cmpwi r10,0 - beq- 1f + beq- L(u1) nop /* Let 601 load start of loop. */ lbzu r6,1(r4) stbu r10,1(r3) cmpwi r6,0 - bne+ 0b -2: stbu r6,1(r3) + bne+ L(u0) +L(u2): stbu r6,1(r3) blr -1: stbu r10,1(r3) +L(u1): stbu r10,1(r3) blr END(__stpcpy) |