diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2012-05-02 08:09:45 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2012-05-02 08:09:45 +0000 |
commit | 03cd7bbbb161b2b3c163eadc7d42aa6f23e2a516 (patch) | |
tree | d1007282e635abcdacece4e6a24518ce0a17eacc /libgloss | |
parent | 6f5a3401aa533191bda935b2e11ba92b08b45c19 (diff) | |
download | newlib-03cd7bbbb161b2b3c163eadc7d42aa6f23e2a516.zip newlib-03cd7bbbb161b2b3c163eadc7d42aa6f23e2a516.tar.gz newlib-03cd7bbbb161b2b3c163eadc7d42aa6f23e2a516.tar.bz2 |
* arm/redboot-crt0.S (__change_mode): Replace mov with movs.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 4 | ||||
-rw-r--r-- | libgloss/arm/redboot-crt0.S | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index d668c1d..9e7c916 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,7 @@ +2012-05-02 Greta Yorsh <Greta.Yorsh@arm.com> + + * arm/redboot-crt0.S (__change_mode): Replace mov with movs. + 2012-03-23 Mike Frysinger <vapier@gentoo.org> * cris/Makefile.in (install-lin): Add $(DESTDIR) before ${tooldir}. diff --git a/libgloss/arm/redboot-crt0.S b/libgloss/arm/redboot-crt0.S index dcd042c..88eb60d 100644 --- a/libgloss/arm/redboot-crt0.S +++ b/libgloss/arm/redboot-crt0.S @@ -97,7 +97,7 @@ __change_mode: movs a1, #0 ldr a2, .LC3 - mov a3, a2 + movs a3, a2 bl SYM_NAME(main) 1: bl SYM_NAME(exit) b 1b |