From patchwork Thu Apr 17 19:33:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 340073 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 8C0D814008E for ; Fri, 18 Apr 2014 07:07:39 +1000 (EST) Received: from localhost ([::1]:35121 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WatWz-0007A1-AH for incoming@patchwork.ozlabs.org; Thu, 17 Apr 2014 17:07:37 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56447) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Was5E-0002Cv-IJ for qemu-devel@nongnu.org; Thu, 17 Apr 2014 15:34:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Was58-0002be-Ig for qemu-devel@nongnu.org; Thu, 17 Apr 2014 15:34:52 -0400 Received: from mail-qg0-x22f.google.com ([2607:f8b0:400d:c04::22f]:58954) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Was58-0002bX-Et for qemu-devel@nongnu.org; Thu, 17 Apr 2014 15:34:46 -0400 Received: by mail-qg0-f47.google.com with SMTP id i50so872449qgf.20 for ; Thu, 17 Apr 2014 12:34:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:in-reply-to:references; bh=42wCSAB/m8k7PTX+ot8CoHMaQzr29vL6ThgQea+Z6cc=; b=mMsR1ASVds1UIusMmtbkmwyEoLlOjii/7tlyjxQkOber1a9E6J5wYGxtbtLTx7/ed9 LvHSrLgzLay0Npd2leZoc0kwBt9WaCazR+9F7B9RX/NjIRF7vF9sDYpjg1bc+OxtXGDS zq3XSx00PZaa2gvnp/aZY7iqVUVe/ed0OKgkFdhfGDUomM/O3xQs76VsQ+Jl8yOpZKl2 ++dNFuyM1VulQ5wvmmDaoee8sC8FNNZ3i58cFf8rmnYjHTOhgu4KQQaJClAQbWJXawiz N6dS6YHBvsVHRLcjabxgjPszPSWyJ/PtqX8Z4pyJJMiuzx37Twf0LEwr5WeUKXpLWrcg dx7g== X-Received: by 10.140.16.37 with SMTP id 34mr19544503qga.37.1397763286096; Thu, 17 Apr 2014 12:34:46 -0700 (PDT) Received: from anchor.com (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id b62sm2694452qge.2.2014.04.17.12.34.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 17 Apr 2014 12:34:45 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Thu, 17 Apr 2014 12:33:12 -0700 Message-Id: <1397763195-1485-38-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1397763195-1485-1-git-send-email-rth@twiddle.net> References: <1397763195-1485-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400d:c04::22f Subject: [Qemu-devel] [PATCH 37/40] target-alpha: Use non-local temps for zero/sink 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 These values are no longer live across branches. Signed-off-by: Richard Henderson --- target-alpha/translate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-alpha/translate.c b/target-alpha/translate.c index 2c77136..c5f2a8d 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -153,7 +153,7 @@ void alpha_translate_init(void) static TCGv load_zero(DisasContext *ctx) { if (TCGV_IS_UNUSED_I64(ctx->zero)) { - ctx->zero = tcg_const_local_i64(0); + ctx->zero = tcg_const_i64(0); } return ctx->zero; } @@ -161,7 +161,7 @@ static TCGv load_zero(DisasContext *ctx) static TCGv dest_sink(DisasContext *ctx) { if (TCGV_IS_UNUSED_I64(ctx->sink)) { - ctx->sink = tcg_temp_local_new(); + ctx->sink = tcg_temp_new(); } return ctx->sink; }