summaryrefslogtreecommitdiffstats
path: root/newlib/libc
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-01-31 20:35:24 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-01-31 20:35:24 +0000
commitb85498d44c994f0a47df9781620edb870deffe09 (patch)
tree726ffb4a00dd7f20206ab451c0958dfce45f446b /newlib/libc
parent7a94fe2a0faba8d9264b746fa458ddace454d0d5 (diff)
downloadcygnal-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.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/sys/h8300hms/crt0.S12
1 files changed, 6 insertions, 6 deletions
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