aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/mips/sysdep.S
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2003-04-09 02:51:04 +0000
committerAlexandre Oliva <aoliva@redhat.com>2003-04-09 02:51:04 +0000
commitc9efbeda6fa2b15aab04a51ec8adaf6089207550 (patch)
treede67577faaeb81a91674e9ccf9f940b7f7abe091 /sysdeps/unix/mips/sysdep.S
parent9afe4964163b658f7271653f116f7570e826eda6 (diff)
downloadglibc-c9efbeda6fa2b15aab04a51ec8adaf6089207550.zip
glibc-c9efbeda6fa2b15aab04a51ec8adaf6089207550.tar.gz
glibc-c9efbeda6fa2b15aab04a51ec8adaf6089207550.tar.bz2
* sysdeps/mips/sys/regdef.h (t4,t5,t6,t7): Renamed to t0..t3 on NewABI. (ta0, ta1, ta2, ta3): Defined to t4..t7 on o32, and a4..a7 on NewABI. * sysdeps/mips/mips64/memcpy.S: Adjust register naming conventions. * sysdeps/mips/mips64/memset.S: Likewise. * sysdeps/unix/mips/sysdep.S (__syscall_error) [_LIBC_REENTRANT]: Use t0 instead of t4 as temporary.
2003-04-08 Alexandre Oliva <aoliva@redhat.com> * sysdeps/mips/sys/regdef.h (t4,t5,t6,t7): Renamed to t0..t3 on NewABI. (ta0, ta1, ta2, ta3): Defined to t4..t7 on o32, and a4..a7 on NewABI. * sysdeps/mips/mips64/memcpy.S: Adjust register naming conventions. * sysdeps/mips/mips64/memset.S: Likewise. * sysdeps/unix/mips/sysdep.S (__syscall_error) [_LIBC_REENTRANT]: Use t0 instead of t4 as temporary.
Diffstat (limited to 'sysdeps/unix/mips/sysdep.S')
-rw-r--r--sysdeps/unix/mips/sysdep.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/mips/sysdep.S b/sysdeps/unix/mips/sysdep.S
index 8c23b4f..8c172db 100644
--- a/sysdeps/unix/mips/sysdep.S
+++ b/sysdeps/unix/mips/sysdep.S
@@ -60,8 +60,8 @@ L(skip):
jal __errno_location
/* Store the error value. */
- REG_L t4, V0OFF(sp)
- sw t4, 0(v0)
+ REG_L t0, V0OFF(sp)
+ sw t0, 0(v0)
/* And just kick back a -1. */
REG_L ra, RAOFF(sp)