From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60756) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R0V9E-00026i-1T for qemu-devel@nongnu.org; Mon, 05 Sep 2011 05:07:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R0V99-000082-TQ for qemu-devel@nongnu.org; Mon, 05 Sep 2011 05:07:19 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:47448) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R0V99-00007q-Ok for qemu-devel@nongnu.org; Mon, 05 Sep 2011 05:07:15 -0400 From: Stefan Weil Date: Mon, 5 Sep 2011 11:06:59 +0200 Message-Id: <1315213622-7051-3-git-send-email-weil@mail.berlios.de> In-Reply-To: <1315213622-7051-1-git-send-email-weil@mail.berlios.de> References: <1315213622-7051-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH 2/5] tcg/ia64: Only one call output register needed for 64 bit hosts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Developers Cc: Aurelien Jarno The second register is never used for ia64 hosts. Cc: Aurelien Jarno Signed-off-by: Stefan Weil --- tcg/ia64/tcg-target.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tcg/ia64/tcg-target.c b/tcg/ia64/tcg-target.c index 9db205d..3803ab6 100644 --- a/tcg/ia64/tcg-target.c +++ b/tcg/ia64/tcg-target.c @@ -172,9 +172,8 @@ static const int tcg_target_call_iarg_regs[8] = { TCG_REG_R63, }; -static const int tcg_target_call_oarg_regs[2] = { - TCG_REG_R8, - TCG_REG_R9 +static const int tcg_target_call_oarg_regs[] = { + TCG_REG_R8 }; /* maximum number of register used for input function arguments */ -- 1.7.0.4