1 static void
get_error(struct tcb * tcp,const bool check_errno)2 get_error(struct tcb *tcp, const bool check_errno)
3 {
4 	if (mips_REG_A3) {
5 		tcp->u_rval = -1;
6 		tcp->u_error = mips_REG_V0;
7 	} else {
8 		tcp->u_rval = mips_REG_V0;
9 #ifdef LINUX_MIPSN32
10 		/* tcp->u_rval contains a truncated value */
11 		tcp->u_lrval = mips_REG_V0;
12 #endif
13 	}
14 }
15