]> Git Repo - qemu.git/commitdiff
target-s390x: Add missing tcg_temp_free_i64() in gen_jcc()
authorStefan Weil <[email protected]>
Fri, 27 May 2011 17:03:27 +0000 (19:03 +0200)
committerAlexander Graf <[email protected]>
Fri, 3 Jun 2011 11:34:01 +0000 (13:34 +0200)
Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
target-s390x/translate.c

index 141a72f0e8a98dd78a2e78bca46499457402bb1c..6ec77ec5789ac773680f9aa84f434fd331c120ca 100644 (file)
@@ -1095,6 +1095,7 @@ static void gen_jcc(DisasContext *s, uint32_t mask, int skip)
             tcg_gen_brcondi_i64(TCG_COND_EQ, tmp64, 0, skip);
             break;
         default:
+            tcg_temp_free_i64(tmp64);
             goto do_dynamic;
         }
         tcg_temp_free_i64(tmp64);
This page took 0.033287 seconds and 4 git commands to generate.