From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46354) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WoEHI-00033f-TE for qemu-devel@nongnu.org; Sat, 24 May 2014 11:54:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WoEHC-0001Gq-Ux for qemu-devel@nongnu.org; Sat, 24 May 2014 11:54:32 -0400 Received: from mail-pb0-x229.google.com ([2607:f8b0:400e:c01::229]:56746) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WoEHC-0001GW-MF for qemu-devel@nongnu.org; Sat, 24 May 2014 11:54:26 -0400 Received: by mail-pb0-f41.google.com with SMTP id uo5so5539967pbc.14 for ; Sat, 24 May 2014 08:54:25 -0700 (PDT) Sender: Richard Henderson From: Richard Henderson Date: Sat, 24 May 2014 08:53:48 -0700 Message-Id: <1400946841-21079-12-git-send-email-rth@twiddle.net> In-Reply-To: <1400946841-21079-1-git-send-email-rth@twiddle.net> References: <1400946841-21079-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PULL 11/24] tcg-mips: Use T9 for TCG_TMP1 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org T0 is an argument register for the n32 and n64 abis. T9 is the call address register for the abis, and is more directly under the control of the backend. Reviewed-by: Paolo Bonzini Signed-off-by: Richard Henderson --- tcg/mips/tcg-target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/mips/tcg-target.c b/tcg/mips/tcg-target.c index 54c9147..78caf25 100644 --- a/tcg/mips/tcg-target.c +++ b/tcg/mips/tcg-target.c @@ -73,7 +73,7 @@ static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = { #endif #define TCG_TMP0 TCG_REG_AT -#define TCG_TMP1 TCG_REG_T0 +#define TCG_TMP1 TCG_REG_T9 /* check if we really need so many registers :P */ static const TCGReg tcg_target_reg_alloc_order[] = { -- 1.9.0