* [Qemu-devel] [5554] CRIS: Plug a few temp leaks.
@ 2008-10-27 21:10 Edgar E. Iglesias
0 siblings, 0 replies; only message in thread
From: Edgar E. Iglesias @ 2008-10-27 21:10 UTC (permalink / raw)
To: qemu-devel
Revision: 5554
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5554
Author: edgar_igl
Date: 2008-10-27 21:10:26 +0000 (Mon, 27 Oct 2008)
Log Message:
-----------
CRIS: Plug a few temp leaks.
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Modified Paths:
--------------
trunk/target-cris/translate.c
Modified: trunk/target-cris/translate.c
===================================================================
--- trunk/target-cris/translate.c 2008-10-27 20:44:27 UTC (rev 5553)
+++ trunk/target-cris/translate.c 2008-10-27 21:10:26 UTC (rev 5554)
@@ -1928,6 +1928,7 @@
t_gen_swapr(t0, t0);
cris_alu(dc, CC_OP_MOVE,
cpu_R[dc->op1], cpu_R[dc->op1], t0, 4);
+ tcg_temp_free(t0);
return 2;
}
@@ -1954,6 +1955,7 @@
t0 = tcg_temp_new(TCG_TYPE_TL);
tcg_gen_shl_tl(t0, cpu_R[dc->op2], tcg_const_tl(dc->zzsize));
tcg_gen_add_tl(cpu_R[dc->op1], cpu_R[dc->op1], t0);
+ tcg_temp_free(t0);
return 2;
}
@@ -1966,7 +1968,7 @@
t0 = tcg_temp_new(TCG_TYPE_TL);
tcg_gen_shl_tl(t0, cpu_R[dc->op2], tcg_const_tl(dc->zzsize));
tcg_gen_add_tl(cpu_R[R_ACR], cpu_R[dc->op1], t0);
-
+ tcg_temp_free(t0);
return 2;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-10-27 21:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-27 21:10 [Qemu-devel] [5554] CRIS: Plug a few temp leaks Edgar E. Iglesias
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).