From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LURMb-000265-GG for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:17 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LURMa-00025e-QI for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:17 -0500 Received: from [199.232.76.173] (port=53300 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LURMa-00025M-Gr for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:16 -0500 Received: from savannah.gnu.org ([199.232.41.3]:59442 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LURMa-0006hp-1e for qemu-devel@nongnu.org; Tue, 03 Feb 2009 14:55:16 -0500 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1LURMY-0001Qg-Gn for qemu-devel@nongnu.org; Tue, 03 Feb 2009 19:55:14 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1LURMY-0001QW-42 for qemu-devel@nongnu.org; Tue, 03 Feb 2009 19:55:14 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Tue, 03 Feb 2009 19:55:14 +0000 Subject: [Qemu-devel] [6502] Fix compilation of PPC64 targets with DEBUG_TCGV enabled Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 6502 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6502 Author: aurel32 Date: 2009-02-03 19:55:13 +0000 (Tue, 03 Feb 2009) Log Message: ----------- Fix compilation of PPC64 targets with DEBUG_TCGV enabled The attached patch fixes compilation of PPC64 targets with DEBUG_TCGV enabled. Signed-off-by: Stuart Brady Signed-off-by: Aurelien Jarno Modified Paths: -------------- trunk/target-ppc/translate.c Modified: trunk/target-ppc/translate.c =================================================================== --- trunk/target-ppc/translate.c 2009-02-02 17:10:57 UTC (rev 6501) +++ trunk/target-ppc/translate.c 2009-02-03 19:55:13 UTC (rev 6502) @@ -6263,7 +6263,7 @@ t = tcg_temp_new_i32(); tcg_gen_ld_i32(t, cpu_env, offsetof(CPUState, vscr)); tcg_gen_extu_i32_i64(cpu_avrl[rD(ctx->opcode)], t); - tcg_temp_free(t); + tcg_temp_free_i32(t); } GEN_HANDLER(mtvscr, 0x04, 0x2, 0x19, 0x03ff0000, PPC_ALTIVEC) @@ -6511,7 +6511,7 @@ GEN_HANDLER(vsldoi, 0x04, 0x16, 0xFF, 0x00000400, PPC_ALTIVEC) { TCGv_ptr ra, rb, rd; - TCGv sh; + TCGv_i32 sh; if (unlikely(!ctx->altivec_enabled)) { gen_exception(ctx, POWERPC_EXCP_VPU); return; @@ -6524,7 +6524,7 @@ tcg_temp_free_ptr(ra); tcg_temp_free_ptr(rb); tcg_temp_free_ptr(rd); - tcg_temp_free(sh); + tcg_temp_free_i32(sh); } #define GEN_VAFORM_PAIRED(name0, name1, opc2) \