diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-02-26 21:32:45 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-02-26 21:32:45 +0000 |
commit | 1f73aa9f82cf6fc2cf432933b78e14ca155a5881 (patch) | |
tree | a609282abf778efe7f752ad4e5ef784267017ea3 | |
parent | 4377def75b105d365a7ae53f0efc89271ae61a76 (diff) | |
download | newlib-1f73aa9f82cf6fc2cf432933b78e14ca155a5881.zip newlib-1f73aa9f82cf6fc2cf432933b78e14ca155a5881.tar.gz newlib-1f73aa9f82cf6fc2cf432933b78e14ca155a5881.tar.bz2 |
2009-02-26 Brooks Moses <brooks@codesourcery.com>
* libc/machine/arm/strcpy.c: Add missing comma.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/machine/arm/strcpy.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 8bf74fe..3b36af5 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2009-02-26 Brooks Moses <brooks@codesourcery.com> + + * libc/machine/arm/strcpy.c: Add missing comma. + 2009-02-26 Ralf Corsepius <ralf.corsepius@rtems.org> * libc/machine/lm32/configure.in: Let diff --git a/newlib/libc/machine/arm/strcpy.c b/newlib/libc/machine/arm/strcpy.c index f44204c..a655a11 100644 --- a/newlib/libc/machine/arm/strcpy.c +++ b/newlib/libc/machine/arm/strcpy.c @@ -92,7 +92,7 @@ strcpy (char* dst, const char* src) "mov r3, r4\n" "1:\n\t" #ifdef __ARMEB__ - "rors r3, r3 #24\n\t" + "rors r3, r3, #24\n\t" #endif "strb r3, [ip], #1\n\t" "tst r3, #0xff\n\t" |