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".
This commit is contained in:
parent
e3f30e9c24
commit
b2d319cb3e
|
@ -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>
|
2001-09-05 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h
|
* libc/sys/cygwin/include/unistd.h: New file, wrapping sys/unistd.h
|
||||||
|
|
|
@ -14,7 +14,7 @@ _start:
|
||||||
cmp r1,r0
|
cmp r1,r0
|
||||||
blo .loop
|
blo .loop
|
||||||
#ifdef __ELF__
|
#ifdef __ELF__
|
||||||
mov.w #__fini,r0
|
mov.l #__fini,r0
|
||||||
jsr @_atexit
|
jsr @_atexit
|
||||||
jsr @__init
|
jsr @__init
|
||||||
#else
|
#else
|
||||||
|
@ -43,7 +43,7 @@ _start:
|
||||||
cmp.l er1,er0
|
cmp.l er1,er0
|
||||||
blo .loop
|
blo .loop
|
||||||
#ifdef __ELF__
|
#ifdef __ELF__
|
||||||
mov.w #__fini,r0
|
mov.l #__fini,r0
|
||||||
jsr @_atexit
|
jsr @_atexit
|
||||||
jsr @__init
|
jsr @__init
|
||||||
#else
|
#else
|
||||||
|
@ -72,7 +72,7 @@ _start:
|
||||||
cmp.l er1,er0
|
cmp.l er1,er0
|
||||||
blo .loop
|
blo .loop
|
||||||
#ifdef __ELF__
|
#ifdef __ELF__
|
||||||
mov.w #__fini,r0
|
mov.l #__fini,r0
|
||||||
jsr @_atexit
|
jsr @_atexit
|
||||||
jsr @__init
|
jsr @__init
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue