diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-11-06 17:46:44 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-11-06 17:46:44 +0000 |
commit | e70d824a1c9f9a357a093b4d2d8b185c2a64a5de (patch) | |
tree | 80092d1fa6287fdceaf5ec90bc9c380e38bc6a1c /libc/sysdeps/linux/mips/pipe.S | |
parent | 1da8fd9223c5a06236d4053582184790424592c2 (diff) |
mips64 patch from Atsushi Nemoto:
We should use "PTR_LA" instead of "la" for N64 ABI.
Diffstat (limited to 'libc/sysdeps/linux/mips/pipe.S')
-rw-r--r-- | libc/sysdeps/linux/mips/pipe.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/mips/pipe.S b/libc/sysdeps/linux/mips/pipe.S index 1d9c2f889..791934da7 100644 --- a/libc/sysdeps/linux/mips/pipe.S +++ b/libc/sysdeps/linux/mips/pipe.S @@ -19,7 +19,7 @@ pipe: syscall beqz a3, 1f #ifdef __PIC__ - la t9, __syscall_error + PTR_LA t9, __syscall_error jr t9 #else j __syscall_error |