target/ppc: Fix TCG temporary leaks in gen_bcond()

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <155327782047.1283071.10234727692461848972.stgit@bahia.lan>
Tested-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
master
Greg Kurz 2019-03-22 19:03:40 +01:00 committed by David Gibson
parent a04d91c701
commit 9acc95cdd3
1 changed files with 2 additions and 0 deletions

View File

@ -3749,6 +3749,8 @@ static void gen_bcond(DisasContext *ctx, int type)
TCGv temp = tcg_temp_new();
if (unlikely(type == BCOND_CTR)) {
gen_inval_exception(ctx, POWERPC_EXCP_INVAL_INVAL);
tcg_temp_free(temp);
tcg_temp_free(target);
return;
}
tcg_gen_subi_tl(cpu_ctr, cpu_ctr, 1);