diff options
Diffstat (limited to 'libc/sysdeps/linux/mips/clone.S')
-rw-r--r-- | libc/sysdeps/linux/mips/clone.S | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/mips/clone.S b/libc/sysdeps/linux/mips/clone.S index 21cb8ec61..9c12075b3 100644 --- a/libc/sysdeps/linux/mips/clone.S +++ b/libc/sysdeps/linux/mips/clone.S @@ -106,12 +106,7 @@ __thread_start: /* Call _exit rather than doing it inline for breakpoint purposes. */ move a0,v0 -#ifdef __PIC__ - la t9,_exit - jalr t9 -#else - jal _exit -#endif + jal _exit_internal .end __thread_start .weak clone; |