diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-31 20:35:24 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-31 20:35:24 +0000 |
commit | b85498d44c994f0a47df9781620edb870deffe09 (patch) | |
tree | 726ffb4a00dd7f20206ab451c0958dfce45f446b | |
parent | 7a94fe2a0faba8d9264b746fa458ddace454d0d5 (diff) | |
download | cygnal-b85498d44c994f0a47df9781620edb870deffe09.tar.gz cygnal-b85498d44c994f0a47df9781620edb870deffe09.tar.bz2 cygnal-b85498d44c994f0a47df9781620edb870deffe09.zip |
2003-01-31 Michael Snyder <msnyder@redhat.com>
* libc/sys/h8300hms/crt0.S (_start): Change local label
from .loop to .Loop, so that ld and gdb will ignore it.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/sys/h8300hms/crt0.S | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 087e6a655..a2a742100 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2003-01-31 Michael Snyder <msnyder@redhat.com> + + * libc/sys/h8300hms/crt0.S (_start): Change local label + from .loop to .Loop, so that ld and gdb will ignore it. + 2003-01-29 Jason Tishler <jason@tishler.net> * libc/include/time.h: Declare nanosleep() under Cygwin. diff --git a/newlib/libc/sys/h8300hms/crt0.S b/newlib/libc/sys/h8300hms/crt0.S index 8d23bd486..2845f4324 100644 --- a/newlib/libc/sys/h8300hms/crt0.S +++ b/newlib/libc/sys/h8300hms/crt0.S @@ -9,10 +9,10 @@ _start: mov.w #_edata,r0 mov.w #_end,r1 sub.w r2,r2 -.loop: mov.w r2,@r0 +.Loop: mov.w r2,@r0 adds #2,r0 cmp r1,r0 - blo .loop + blo .Loop #ifdef __ELF__ mov.l #__fini,r0 jsr @_atexit @@ -38,10 +38,10 @@ _start: mov.l #_edata,er0 mov.l #_end,er1 sub.w r2,r2 ; not sure about alignment requirements -.loop: mov.w r2,@er0 ; playing it safe for now +.Loop: mov.w r2,@er0 ; playing it safe for now adds #2,er0 cmp.l er1,er0 - blo .loop + blo .Loop #ifdef __ELF__ mov.l #__fini,r0 jsr @_atexit @@ -67,10 +67,10 @@ _start: mov.l #_edata,er0 mov.l #_end,er1 sub.w r2,r2 ; not sure about alignment requirements -.loop: mov.w r2,@er0 ; playing it safe for now +.Loop: mov.w r2,@er0 ; playing it safe for now adds #2,er0 cmp.l er1,er0 - blo .loop + blo .Loop #ifdef __ELF__ mov.l #__fini,r0 jsr @_atexit |