summaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/s390/s390-32
diff options
context:
space:
mode:
authorAndreas Krebbel <Andreas.Krebbel@de.ibm.com>2011-07-19 20:29:27 -0400
committerUlrich Drepper <drepper@gmail.com>2011-07-19 20:29:27 -0400
commit19df733e643ea2a0ea95385957163d0e3d5b2d1c (patch)
treed104f121664da28ff337a29c8e1767944510a7da /sysdeps/unix/sysv/linux/s390/s390-32
parentc8835729b8a4a862e70213e00b0751e1b19d3f9d (diff)
downloadglibc-19df733e643ea2a0ea95385957163d0e3d5b2d1c.tar.gz
S/390: Don't use r11 in INTERNAL_VSYSCALL_NCS macro
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390/s390-32')
-rw-r--r--sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h b/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
index 5bfdc44f48..13ce9ab748 100644
--- a/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
@@ -50,7 +50,7 @@
even if the call succeeded. E.g., the `lseek' system call might return
a large offset. Therefore we must not anymore test for < 0, but test
for a real error by making sure the value in gpr2 is a real error
- number. Linus said he will make sure the no syscall returns a value
+ number. Linus said he will make sure that no syscall returns a value
in -1 .. -4095 as a valid result so we can savely test with -4095. */
#undef PSEUDO
@@ -368,12 +368,12 @@
DECLARGS_##nr(args) \
register long _ret asm("2"); \
asm volatile ( \
- "lr 11,14\n\t" \
+ "lr 10,14\n\t" \
"basr 14,%1\n\t" \
- "lr 14,11\n\t" \
+ "lr 14,10\n\t" \
: "=d" (_ret) \
: "d" (fn) ASMFMT_##nr \
- : "cc", "memory", "0", "1", "11" CLOBBER_##nr); \
+ : "cc", "memory", "0", "1", "10" CLOBBER_##nr); \
_ret; })
/* Pointer mangling support. */