diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2005-07-31 04:31:58 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2005-07-31 04:31:58 +0000 |
commit | 0ad448b780c6b1f5f0efc3278f51a6d5586b3df9 (patch) | |
tree | 1745fa24a39aa6ef31e209c02f5c12fc0f8cea7f /libc/sysdeps | |
parent | 9191b996fa2a02c12783e9e635203ac9416e9d58 (diff) |
Old glibc fix for ltp's clone07 test. Another file that needs updating...
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/mips/clone.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/mips/clone.S b/libc/sysdeps/linux/mips/clone.S index 079d2bef2..21cb8ec61 100644 --- a/libc/sysdeps/linux/mips/clone.S +++ b/libc/sysdeps/linux/mips/clone.S @@ -102,7 +102,7 @@ __thread_start: lw a0,4(sp) /* Argument pointer. */ /* Call the user's function. */ - jalr t9 + jal t9 /* Call _exit rather than doing it inline for breakpoint purposes. */ move a0,v0 |