diff options
author | Richard Henderson <rth@twiddle.net> | 2017-07-13 14:04:00 -1000 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2017-07-18 18:42:02 -1000 |
commit | 6a9b110d54b885dbb29872a142cc4d2a402fada8 (patch) | |
tree | 6710fb031039e68d8da7a6a5c865bf4888e46ec5 /target/alpha | |
parent | f401c0321f3b6483a5929265db809005993b1167 (diff) |
target/alpha: Fix temp leak in gen_fbcond
Tested-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target/alpha')
-rw-r--r-- | target/alpha/translate.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target/alpha/translate.c b/target/alpha/translate.c index 326af7f463..aaaf28fb18 100644 --- a/target/alpha/translate.c +++ b/target/alpha/translate.c @@ -613,8 +613,12 @@ static ExitStatus gen_fbcond(DisasContext *ctx, TCGCond cond, int ra, int32_t disp) { TCGv cmp_tmp = tcg_temp_new(); + ExitStatus ret; + gen_fold_mzero(cond, cmp_tmp, load_fpr(ctx, ra)); - return gen_bcond_internal(ctx, cond, cmp_tmp, disp); + ret = gen_bcond_internal(ctx, cond, cmp_tmp, disp); + tcg_temp_free(cmp_tmp); + return ret; } static void gen_fcmov(DisasContext *ctx, TCGCond cond, int ra, int rb, int rc) |