From: Richard Henderson Date: Fri, 28 Dec 2012 22:19:35 +0000 (-0800) Subject: tcg-hppa: Fix typo in brcond2 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=753d99d38b5877440dde2705e30ca60e2ec62965;p=qemu.git tcg-hppa: Fix typo in brcond2 Reported-by: Stuart Brady Signed-off-by: Richard Henderson Signed-off-by: Blue Swirl --- diff --git a/tcg/hppa/tcg-target.c b/tcg/hppa/tcg-target.c index 5b27cf6f12..656e73621a 100644 --- a/tcg/hppa/tcg-target.c +++ b/tcg/hppa/tcg-target.c @@ -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: