From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 38816C636D6 for ; Thu, 23 Feb 2023 18:57:10 +0000 (UTC) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pVGiO-0008OV-Ss; Thu, 23 Feb 2023 13:53:12 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVGiM-00088a-Gn; Thu, 23 Feb 2023 13:53:10 -0500 Received: from rev.ng ([5.9.113.41]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pVGiK-0003PC-RV; Thu, 23 Feb 2023 13:53:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=rev.ng; s=dkim; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:From:References: Cc:To:Subject:Reply-To:MIME-Version:Date:Message-ID:Sender:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=a22ZCmudjj0X/99/kzsUEetrHXFjrNP5YqkcKiUGzt8=; b=Gk/CZui067jUe2q9glXahBZC0x xGG0BgJ93jPAD6NTQ/mHHngUwmQAI+MR2VLJjmQK6sOtA5qVP0QwVGHYA01J5vJqt55TZg0eS7Wrf txYSGhJA8XLc2ZmU+jZKau2z5MipLCQO2XodeZnT7jattzfhf6+uWZorlFdBDtr0fxhY=; Message-ID: <9b5839d2-5b10-df53-72f9-c846d99f5515@rev.ng> Date: Thu, 23 Feb 2023 19:52:05 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.0 Subject: Re: [PATCH v2 2/3] target/alpha: Replace TCGv by TCGv_i64 in gen_cpy_mask() To: =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , qemu-devel@nongnu.org Cc: Mark Cave-Ayland , Artyom Tarasenko , Ilya Leoshkevich , Richard Henderson , qemu-s390x@nongnu.org References: <20230223180405.31836-1-philmd@linaro.org> <20230223180405.31836-3-philmd@linaro.org> Content-Language: en-US Organization: rev.ng In-Reply-To: <20230223180405.31836-3-philmd@linaro.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=5.9.113.41; envelope-from=anjo@rev.ng; helo=rev.ng X-Spam_score_int: -21 X-Spam_score: -2.2 X-Spam_bar: -- X-Spam_report: (-2.2 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, NICE_REPLY_A=-0.09, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-to: anjo@rev.ng X-ACL-Warn: , Anton Johansson From: Anton Johansson via Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org On 2/23/23 19:04, Philippe Mathieu-Daudé wrote: > Although TCGv is defined as TCGv_i64 on alpha, > make it clear tcg_temp_new_i64() returns a TCGv_i64. > Free calling tcg_temp_free_i64(). > > Suggested-by: Ilya Leoshkevich > Signed-off-by: Philippe Mathieu-Daudé > --- > target/alpha/translate.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Reviewed-by: Anton Johansson