mips n32: fix preadv/pwritev offset decoding

In mips n32 abi, like in most of 32-bit architectures, offset
is passed to preadv/pwritev syscalls using two syscall arguments.

* io.c (print_llu_from_low_high_val) [LINUX_MIPSN32]: Remove.
This commit is contained in:
2015-03-03 01:36:29 +00:00
parent d79ed12376
commit 5a64656da6

2
io.c
View File

@ -227,8 +227,6 @@ print_llu_from_low_high_val(struct tcb *tcp, int arg)
((unsigned long) tcp->u_arg[arg + 1] << current_wordsize * 8)
| (unsigned long) tcp->u_arg[arg]);
# endif
#elif defined(LINUX_MIPSN32)
tprintf("%llu", (unsigned long long) tcp->ext_arg[arg]);
#else
# ifdef X32
if (current_personality == 0)