From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51204) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToiHJ-00070n-TV for qemu-devel@nongnu.org; Fri, 28 Dec 2012 17:19:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ToiHC-0006Wv-P0 for qemu-devel@nongnu.org; Fri, 28 Dec 2012 17:19:45 -0500 Received: from mail-pb0-f43.google.com ([209.85.160.43]:38982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ToiHC-0006Wo-Ip for qemu-devel@nongnu.org; Fri, 28 Dec 2012 17:19:38 -0500 Received: by mail-pb0-f43.google.com with SMTP id um15so6155584pbc.30 for ; Fri, 28 Dec 2012 14:19:38 -0800 (PST) Sender: Richard Henderson From: Richard Henderson Date: Fri, 28 Dec 2012 14:19:35 -0800 Message-Id: <1356733175-4534-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH] tcg-hppa: Fix typo in brcond2 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Blue Swirl , Aurelien Jarno Reported-by: Stuart Brady Signed-off-by: Richard Henderson --- tcg/hppa/tcg-target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcg/hppa/tcg-target.c b/tcg/hppa/tcg-target.c index 5b27cf6..656e736 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: -- 1.7.11.7