diff options
author | Andreas Jaeger <aj@suse.de> | 2003-03-13 15:07:13 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-03-13 15:07:13 +0000 |
commit | 000f73030b8758a153fc2850d8668c5b2b6bec28 (patch) | |
tree | 94c80f97fb20e0f5c436e8e570d31313855df1a6 /sysdeps | |
parent | b5ec56172d65dd37437846363e742249126d5975 (diff) | |
download | glibc-000f73030b8758a153fc2850d8668c5b2b6bec28.tar glibc-000f73030b8758a153fc2850d8668c5b2b6bec28.tar.gz glibc-000f73030b8758a153fc2850d8668c5b2b6bec28.tar.bz2 glibc-000f73030b8758a153fc2850d8668c5b2b6bec28.zip |
Introduce and use local
label .Lthread_start since current binutils don't allow branches
to globally visible symbols.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/clone.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/clone.S b/sysdeps/unix/sysv/linux/mips/clone.S index eba4ad9c3d..00b13170e5 100644 --- a/sysdeps/unix/sysv/linux/mips/clone.S +++ b/sysdeps/unix/sysv/linux/mips/clone.S @@ -63,7 +63,7 @@ NESTED(__clone,4*SZREG,sp) syscall bnez a3,error - beqz v0,__thread_start + beqz v0,.Lthread_start /* Successful return from the parent */ addiu sp,32 @@ -84,7 +84,7 @@ error: its own function so that we can terminate the stack trace with our debug info. */ -ENTRY(__thread_start) +.Lthread_start: /* cp is already loaded. */ .cprestore 16 /* The stackframe has been created on entry of clone(). */ |