From: Andreas Jaeger Date: Thu, 13 Mar 2003 15:07:13 +0000 (+0000) Subject: Introduce and use local X-Git-Tag: glibc-2.16-ports-before-merge~1428 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28a8f6990191a351c4b1330f9d4ef2627b972ccc;p=thirdparty%2Fglibc.git Introduce and use local label .Lthread_start since current binutils don't allow branches to globally visible symbols. --- diff --git a/sysdeps/unix/sysv/linux/mips/clone.S b/sysdeps/unix/sysv/linux/mips/clone.S index eba4ad9c3d0..00b13170e5e 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(). */