* [Qemu-devel] [6502] Fix compilation of PPC64 targets with DEBUG_TCGV enabled
@ 2009-02-03 19:55 Aurelien Jarno
0 siblings, 0 replies; only message in thread
From: Aurelien Jarno @ 2009-02-03 19:55 UTC (permalink / raw)
To: qemu-devel
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 <stuart.brady@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
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) \
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-02-03 19:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-03 19:55 [Qemu-devel] [6502] Fix compilation of PPC64 targets with DEBUG_TCGV enabled Aurelien Jarno
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).