Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/common/lib/libc/arch/arm/string Add missing ! on str



details:   https://anonhg.NetBSD.org/src/rev/a7d2dc8f77d3
branches:  trunk
changeset: 784027:a7d2dc8f77d3
user:      matt <matt%NetBSD.org@localhost>
date:      Tue Jan 15 04:48:14 2013 +0000

description:
Add missing ! on str

diffstat:

 common/lib/libc/arch/arm/string/strcat_arm.S |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 874dae083fc6 -r a7d2dc8f77d3 common/lib/libc/arch/arm/string/strcat_arm.S
--- a/common/lib/libc/arch/arm/string/strcat_arm.S      Tue Jan 15 04:02:56 2013 +0000
+++ b/common/lib/libc/arch/arm/string/strcat_arm.S      Tue Jan 15 04:48:14 2013 +0000
@@ -33,7 +33,7 @@
  * Implementation of strcat using strlen/strcpy.
  */
 ENTRY(strcat)
-       str     lr, [sp, #-8]           /* save return address */
+       str     lr, [sp, #-8]!          /* save return address */
        push    {r4, r5}                /* save registers */
 
        mov     r4, r0                  /* save dst */



Home | Main Index | Thread Index | Old Index