Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2008-10-07 00:55:19 +0400
committerJeff Johnston <jjohnstn@redhat.com>2008-10-07 00:55:19 +0400
commit455e95b5bd49286496ddf1957ffabb0240c5ce47 (patch)
treefc52476ca2c0d59615272a2d5df2a05552aa10bc /libgloss
parent0d2597f5a07cf946c921e66121f0b23aa4cc4d14 (diff)
2008-10-06 Bill Tompkins <bill+newlib@key-square.com>
* arm/crt0.S: Fix calling hardware_init_hook() or software_init_hook() under thumb and thumb2.
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog5
-rw-r--r--libgloss/arm/crt0.S9
2 files changed, 14 insertions, 0 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index ba58046c1..7e8be0847 100644
--- a/libgloss/ChangeLog
+++ b/libgloss/ChangeLog
@@ -1,3 +1,8 @@
+2008-10-06 Bill Tompkins <bill+newlib@key-square.com>
+
+ * arm/crt0.S: Fix calling hardware_init_hook() or software_init_hook()
+ under thumb and thumb2.
+
2008-09-24 DJ Delorie <dj@redhat.com>
* m32c/varvects.S: New.
diff --git a/libgloss/arm/crt0.S b/libgloss/arm/crt0.S
index bbde5892c..ea5163ae1 100644
--- a/libgloss/arm/crt0.S
+++ b/libgloss/arm/crt0.S
@@ -167,14 +167,23 @@ __change_mode:
ldr r3, .Lhwinit
cmp r3, #0
beq .LC24
+#if defined(__thumb__) || defined(__thumb2__)
+ blx r3
+#else
mov lr, pc
mov pc, r3
+#endif
.LC24:
ldr r3, .Lswinit
cmp r3, #0
beq .LC25
+#if defined(__thumb__) || defined(__thumb2__)
+ blx r3
+#else
mov lr, pc
mov pc, r3
+#endif
+
.LC25:
mov r0, #0 /* no arguments */
mov r1, #0 /* no argv either */