Skip to content

Commit

Permalink
target-tricore: fix SLR_LD_W and SLR_LD_W_POSTINC insn being a 2 byte…
Browse files Browse the repository at this point in the history
… memory access insted of 4

Signed-off-by: Bastian Koppelmann <[email protected]>
  • Loading branch information
bkoppelmann committed May 11, 2015
1 parent 250ef8c commit 7bd0eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions target-tricore/translate.c
Original file line number Diff line number Diff line change
Expand Up @@ -3745,10 +3745,10 @@ static void decode_slr_opc(DisasContext *ctx, int op1)
tcg_gen_addi_tl(cpu_gpr_a[r2], cpu_gpr_a[r2], 2);
break;
case OPC1_16_SLR_LD_W:
tcg_gen_qemu_ld_tl(cpu_gpr_d[r1], cpu_gpr_a[r2], ctx->mem_idx, MO_LESW);
tcg_gen_qemu_ld_tl(cpu_gpr_d[r1], cpu_gpr_a[r2], ctx->mem_idx, MO_LESL);
break;
case OPC1_16_SLR_LD_W_POSTINC:
tcg_gen_qemu_ld_tl(cpu_gpr_d[r1], cpu_gpr_a[r2], ctx->mem_idx, MO_LESW);
tcg_gen_qemu_ld_tl(cpu_gpr_d[r1], cpu_gpr_a[r2], ctx->mem_idx, MO_LESL);
tcg_gen_addi_tl(cpu_gpr_a[r2], cpu_gpr_a[r2], 4);
break;
}
Expand Down

0 comments on commit 7bd0eae

Please sign in to comment.