diff options
| author | Bastian Koppelmann | 2014-12-09 17:04:46 +0100 |
|---|---|---|
| committer | Bastian Koppelmann | 2015-05-11 14:15:46 +0200 |
| commit | 250ef8c76861c756354ed1c67f0a4524e5339369 (patch) | |
| tree | 7a58eabff7e08d24c01c0d77041424f9c62cf652 /target-tricore | |
| parent | Merge remote-tracking branch 'remotes/kraxel/tags/pull-gtk-20150508-1' into s... (diff) | |
| download | qemu-250ef8c76861c756354ed1c67f0a4524e5339369.tar.gz qemu-250ef8c76861c756354ed1c67f0a4524e5339369.tar.xz qemu-250ef8c76861c756354ed1c67f0a4524e5339369.zip | |
target-tricore: Fix LOOP using wrong register for compare
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Diffstat (limited to 'target-tricore')
| -rw-r--r-- | target-tricore/translate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-tricore/translate.c b/target-tricore/translate.c index 54a48cd694..d2cd64013d 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); |
