diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 8bf74fea3..3b36af519 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2009-02-26 Brooks Moses + + * libc/machine/arm/strcpy.c: Add missing comma. + 2009-02-26 Ralf Corsepius * libc/machine/lm32/configure.in: Let diff --git a/newlib/libc/machine/arm/strcpy.c b/newlib/libc/machine/arm/strcpy.c index f44204c5b..a655a1124 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"