Skip to content

Commit

Permalink
target-s390x: Add missing tcg_temp_free_i32()
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
  • Loading branch information
Stefan Weil authored and agraf committed Jun 3, 2011
1 parent bbf9f3b commit 2497a67
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions target-s390x/translate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1078,9 +1078,12 @@ static void gen_jcc(DisasContext *s, uint32_t mask, int skip)
tcg_gen_brcondi_i32(TCG_COND_EQ, tmp, 0, skip);
break;
default:
tcg_temp_free_i32(tmp);
tcg_temp_free_i32(tmp2);
goto do_dynamic;
}
tcg_temp_free_i32(tmp);
tcg_temp_free_i32(tmp2);
account_inline_branch(s);
break;
case CC_OP_TM_64:
Expand Down

0 comments on commit 2497a67

Please sign in to comment.