mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
target/mips: Finish conversion to tcg_gen_qemu_{ld,st}_*
Convert away from the old interface with the implicit MemOp argument. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Message-Id: <20230502135741.1158035-6-richard.henderson@linaro.org>
This commit is contained in:
parent
b7a94da955
commit
6d0cad1259
2 changed files with 5 additions and 5 deletions
|
@ -998,7 +998,7 @@ static void gen_llwp(DisasContext *ctx, uint32_t base, int16_t offset,
|
|||
TCGv tmp2 = tcg_temp_new();
|
||||
|
||||
gen_base_offset_addr(ctx, taddr, base, offset);
|
||||
tcg_gen_qemu_ld64(tval, taddr, ctx->mem_idx);
|
||||
tcg_gen_qemu_ld_i64(tval, taddr, ctx->mem_idx, MO_TEUQ);
|
||||
if (cpu_is_bigendian(ctx)) {
|
||||
tcg_gen_extr_i64_tl(tmp2, tmp1, tval);
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue