Commit 69bd582091a8dee1dc0eb62edcac9235c0f12aa1
1 parent
d34defbc
target-ppc: free a tcg temp variable
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6790 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
0 deletions
target-ppc/translate_init.c
... | ... | @@ -474,6 +474,7 @@ static void spr_write_excp_prefix (void *opaque, int sprn, int gprn) |
474 | 474 | tcg_gen_and_tl(t0, t0, cpu_gpr[gprn]); |
475 | 475 | tcg_gen_st_tl(t0, cpu_env, offsetof(CPUState, excp_prefix)); |
476 | 476 | gen_store_spr(sprn, t0); |
477 | + tcg_temp_free(t0); | |
477 | 478 | } |
478 | 479 | |
479 | 480 | static void spr_write_excp_vector (void *opaque, int sprn, int gprn) | ... | ... |