From nobody Tue Feb 10 01:32:57 2026 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; dkim=fail; spf=pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1625809073605832.4106458455071; Thu, 8 Jul 2021 22:37:53 -0700 (PDT) Received: from localhost ([::1]:39666 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m1jCy-0000Gn-Ax for importer@patchew.org; Fri, 09 Jul 2021 01:37:52 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35208) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m1iti-00018C-3Z; Fri, 09 Jul 2021 01:17:58 -0400 Received: from ozlabs.org ([203.11.71.1]:55519) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m1itf-0001yh-F7; Fri, 09 Jul 2021 01:17:57 -0400 Received: by ozlabs.org (Postfix, from userid 1007) id 4GLhHd5f4Fz9svs; Fri, 9 Jul 2021 15:17:33 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1625807853; bh=hPtLEx8NTO2XmDISUnsJ9dDKsbJkzDbCv2e7woM/dQc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=aOHeITflUyRCK2vf8jFFnluAqb0LEVzM94cieab9QbR6bPDY7gyTvx1bIv38d+03U OEq4zzVkoq7gcEnrwXEX1jE7S0nSV2e+vCy7YuxNsal1s6IokQCZcWKWfySwtYoadq H7PN2cE8GVobiX+I6PO+pmGadusywaw7mq4Bvun4= From: David Gibson To: peter.maydell@linaro.org, groug@kaod.org Subject: [PULL 14/33] target/ppc: Fix compilation with FLUSH_ALL_TLBS debug option Date: Fri, 9 Jul 2021 15:17:09 +1000 Message-Id: <20210709051728.170203-15-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210709051728.170203-1-david@gibson.dropbear.id.au> References: <20210709051728.170203-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Received-SPF: pass (zohomail.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Received-SPF: pass client-ip=203.11.71.1; envelope-from=dgibson@ozlabs.org; helo=ozlabs.org X-Spam_score_int: -19 X-Spam_score: -2.0 X-Spam_bar: -- X-Spam_report: (-2.0 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HEADER_FROM_DIFFERENT_DOMAINS=0.001, RCVD_IN_DNSWL_NONE=-0.0001, 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.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: aik@ozlabs.ru, David Gibson , qemu-ppc@nongnu.org, qemu-devel@nongnu.org, Fabiano Rosas Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) X-ZM-MESSAGEID: 1625809075393100001 Content-Type: text/plain; charset="utf-8" From: Fabiano Rosas ../target/ppc/mmu_helper.c: In function 'helper_store_ibatu': ../target/ppc/mmu_helper.c:1802:17: error: unused variable 'cpu' [-Werror= =3Dunused-variable] 1802 | PowerPCCPU *cpu =3D env_archcpu(env); | ^~~ ../target/ppc/mmu_helper.c: In function 'helper_store_dbatu': ../target/ppc/mmu_helper.c:1838:17: error: unused variable 'cpu' [-Werror= =3Dunused-variable] 1838 | PowerPCCPU *cpu =3D env_archcpu(env); | ^~~ ../target/ppc/mmu_helper.c: In function 'helper_store_601_batu': ../target/ppc/mmu_helper.c:1874:17: error: unused variable 'cpu' [-Werror= =3Dunused-variable] 1874 | PowerPCCPU *cpu =3D env_archcpu(env); | ^~~ ../target/ppc/mmu_helper.c: In function 'helper_store_601_batl': ../target/ppc/mmu_helper.c:1919:17: error: unused variable 'cpu' [-Werror= =3Dunused-variable] 1919 | PowerPCCPU *cpu =3D env_archcpu(env); Fixes: db70b31144 ("target/ppc: Use env_cpu, env_archcpu") Signed-off-by: Fabiano Rosas Message-Id: <20210702215235.1941771-3-farosas@linux.ibm.com> Signed-off-by: David Gibson --- target/ppc/mmu_helper.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/target/ppc/mmu_helper.c b/target/ppc/mmu_helper.c index 4c534b534b..945ac41d42 100644 --- a/target/ppc/mmu_helper.c +++ b/target/ppc/mmu_helper.c @@ -1755,9 +1755,6 @@ static inline void dump_store_bat(CPUPPCState *env, c= har ID, int ul, int nr, void helper_store_ibatu(CPUPPCState *env, uint32_t nr, target_ulong value) { target_ulong mask; -#if defined(FLUSH_ALL_TLBS) - PowerPCCPU *cpu =3D env_archcpu(env); -#endif =20 dump_store_bat(env, 'I', 0, nr, value); if (env->IBAT[0][nr] !=3D value) { @@ -1791,9 +1788,6 @@ void helper_store_ibatl(CPUPPCState *env, uint32_t nr= , target_ulong value) void helper_store_dbatu(CPUPPCState *env, uint32_t nr, target_ulong value) { target_ulong mask; -#if defined(FLUSH_ALL_TLBS) - PowerPCCPU *cpu =3D env_archcpu(env); -#endif =20 dump_store_bat(env, 'D', 0, nr, value); if (env->DBAT[0][nr] !=3D value) { @@ -1828,7 +1822,6 @@ void helper_store_601_batu(CPUPPCState *env, uint32_t= nr, target_ulong value) { target_ulong mask; #if defined(FLUSH_ALL_TLBS) - PowerPCCPU *cpu =3D env_archcpu(env); int do_inval; #endif =20 @@ -1873,7 +1866,6 @@ void helper_store_601_batl(CPUPPCState *env, uint32_t= nr, target_ulong value) #if !defined(FLUSH_ALL_TLBS) target_ulong mask; #else - PowerPCCPU *cpu =3D env_archcpu(env); int do_inval; #endif =20 --=20 2.31.1