]> sourceware.org Git - newlib-cygwin.git/commitdiff
2001-09-07 Jeff Law <law@redhat.com>
authorJeff Johnston <jjohnstn@redhat.com>
Fri, 7 Sep 2001 18:21:33 +0000 (18:21 +0000)
committerJeff Johnston <jjohnstn@redhat.com>
Fri, 7 Sep 2001 18:21:33 +0000 (18:21 +0000)
        * libc/sys/h8300hms/crt0.S: For H8/300H and H8/S, load address of
        __fini with "mov.l" instead of "mov.w".

newlib/ChangeLog
newlib/libc/sys/h8300hms/crt0.S

index 1d8400c40411796df73343237016e364d6c77d4d..3e8d67ce77b32da83c3b3a2f48780bbb4e07d0ad 100644 (file)
@@ -1,3 +1,8 @@
+2001-09-07  Jeff Law  <law@redhat.com>
+
+        * libc/sys/h8300hms/crt0.S: For H8/300H and H8/S, load address of
+        __fini with "mov.l" instead of "mov.w".
+
 2001-09-05  Corinna Vinschen  <corinna@vinschen.de>
 
        * libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h
index b67c103e506f0d0eeba7ff085b7410e7e77b367d..8d23bd4860adb23a05b5398e631d582131c48325 100644 (file)
@@ -14,7 +14,7 @@ _start:
        cmp     r1,r0
        blo     .loop
 #ifdef __ELF__
-       mov.w   #__fini,r0
+       mov.l   #__fini,r0
        jsr     @_atexit
        jsr     @__init
 #else
@@ -43,7 +43,7 @@ _start:
        cmp.l   er1,er0
        blo     .loop
 #ifdef __ELF__
-       mov.w   #__fini,r0
+       mov.l   #__fini,r0
        jsr     @_atexit
        jsr     @__init
 #else
@@ -72,7 +72,7 @@ _start:
        cmp.l   er1,er0
        blo     .loop
 #ifdef __ELF__
-       mov.w   #__fini,r0
+       mov.l   #__fini,r0
        jsr     @_atexit
        jsr     @__init
 #else
This page took 0.045409 seconds and 5 git commands to generate.