summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libgloss/ChangeLog4
-rw-r--r--libgloss/arm/redboot-crt0.S2
2 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index d668c1d37..9e7c916c7 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 dcd042c23..88eb60d30 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