From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44374) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ypgw9-0007dk-Uj for qemu-devel@nongnu.org; Tue, 05 May 2015 13:47:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ypgw6-0003Tt-3n for qemu-devel@nongnu.org; Tue, 05 May 2015 13:47:17 -0400 Received: from mail.uni-paderborn.de ([131.234.142.9]:45909) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ypgw5-0003T0-TC for qemu-devel@nongnu.org; Tue, 05 May 2015 13:47:14 -0400 From: Bastian Koppelmann Date: Tue, 5 May 2015 19:46:59 +0200 Message-Id: <1430848023-21048-2-git-send-email-kbastian@mail.uni-paderborn.de> In-Reply-To: <1430848023-21048-1-git-send-email-kbastian@mail.uni-paderborn.de> References: <1430848023-21048-1-git-send-email-kbastian@mail.uni-paderborn.de> Subject: [Qemu-devel] [PATCH 1/5] target-tricore: Fix LOOP using wrong register for compare List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Bastian Koppelmann --- target-tricore/translate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-tricore/translate.c b/target-tricore/translate.c index 54a48cd..d2cd640 100644 --- a/target-tricore/translate.c +++ b/target-tricore/translate.c @@ -3440,7 +3440,7 @@ static void gen_compute_branch(DisasContext *ctx, uint32_t opc, int r1, break; case OPCM_32_BRR_LOOP: if (MASK_OP_BRR_OP2(ctx->opcode) == OPC2_32_BRR_LOOP) { - gen_loop(ctx, r1, offset * 2); + gen_loop(ctx, r2, offset * 2); } else { /* OPC2_32_BRR_LOOPU */ gen_goto_tb(ctx, 0, ctx->pc + offset * 2); -- 2.3.7