From patchwork Mon Sep 5 09:07:02 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Weil X-Patchwork-Id: 113325 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 3A04EB6F70 for ; Mon, 5 Sep 2011 19:07:46 +1000 (EST) Received: from localhost ([::1]:38524 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R0V9Z-0002n0-HZ for incoming@patchwork.ozlabs.org; Mon, 05 Sep 2011 05:07:41 -0400 Received: from eggs.gnu.org ([140.186.70.92]:60800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R0V9J-0002Nc-Jo for qemu-devel@nongnu.org; Mon, 05 Sep 2011 05:07:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R0V9F-000091-0Z for qemu-devel@nongnu.org; Mon, 05 Sep 2011 05:07:25 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:47731) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R0V9E-00008l-KS for qemu-devel@nongnu.org; Mon, 05 Sep 2011 05:07:20 -0400 Received: from localhost (v220110690675601.yourvserver.net.local [127.0.0.1]) by v220110690675601.yourvserver.net (Postfix) with ESMTP id 3319C7283075; Mon, 5 Sep 2011 11:07:20 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at weilnetz.de Received: from v220110690675601.yourvserver.net ([127.0.0.1]) by localhost (v220110690675601.yourvserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QhOy85w4PKpH; Mon, 5 Sep 2011 11:07:15 +0200 (CEST) Received: from flocke.weilnetz.de (p54ADB562.dip.t-dialin.net [84.173.181.98]) by v220110690675601.yourvserver.net (Postfix) with ESMTPSA id C8EFF7283072; Mon, 5 Sep 2011 11:07:10 +0200 (CEST) Received: from stefan by flocke.weilnetz.de with local (Exim 4.72) (envelope-from ) id 1R0V94-0002mV-F2; Mon, 05 Sep 2011 11:07:10 +0200 From: Stefan Weil To: QEMU Developers Date: Mon, 5 Sep 2011 11:07:02 +0200 Message-Id: <1315213622-7051-6-git-send-email-weil@mail.berlios.de> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1315213622-7051-1-git-send-email-weil@mail.berlios.de> References: <1315213622-7051-1-git-send-email-weil@mail.berlios.de> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 78.47.199.172 Subject: [Qemu-devel] [PATCH 5/5] tcg/ppc64: Only one call output register needed for 64 bit hosts X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The second register is only needed for 32 bit hosts. Cc: Vassili Karpov Signed-off-by: Stefan Weil --- tcg/ppc64/tcg-target.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tcg/ppc64/tcg-target.c b/tcg/ppc64/tcg-target.c index d831684..bef7aac 100644 --- a/tcg/ppc64/tcg-target.c +++ b/tcg/ppc64/tcg-target.c @@ -130,7 +130,7 @@ static const int tcg_target_call_iarg_regs[] = { TCG_REG_R10 }; -static const int tcg_target_call_oarg_regs[2] = { +static const int tcg_target_call_oarg_regs[] = { TCG_REG_R3 };