tcg-hppa: Fix typo in brcond2

Reported-by: Stuart Brady <sdb@zubnet.me.uk>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Richard Henderson 2012-12-28 14:19:35 -08:00 committed by Blue Swirl
parent 76a347e1cd
commit 753d99d38b
1 changed files with 1 additions and 1 deletions

View File

@ -824,7 +824,7 @@ static void tcg_out_brcond2(TCGContext *s, int cond, TCGArg al, TCGArg ah,
tcg_out_brcond(s, TCG_COND_EQ, ah, bh, bhconst, label_index);
break;
case TCG_COND_NE:
tcg_out_brcond(s, TCG_COND_NE, al, bl, bhconst, label_index);
tcg_out_brcond(s, TCG_COND_NE, al, bl, blconst, label_index);
tcg_out_brcond(s, TCG_COND_NE, ah, bh, bhconst, label_index);
break;
default: