]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Introduce and use local
authorAndreas Jaeger <aj@suse.de>
Thu, 13 Mar 2003 15:07:13 +0000 (15:07 +0000)
committerAndreas Jaeger <aj@suse.de>
Thu, 13 Mar 2003 15:07:13 +0000 (15:07 +0000)
label .Lthread_start since current binutils don't allow branches
to globally visible symbols.

sysdeps/unix/sysv/linux/mips/clone.S

index eba4ad9c3d03161744fa54006960f9acb3cb922d..00b13170e5e632eeabaf83c8cb3a4bb2c290baa5 100644 (file)
@@ -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().  */