From: Richard Henderson Date: Mon, 26 Jul 2021 18:10:23 +0000 (-1000) Subject: accel/tcg: Remove double bswap for helper_atomic_sto_*_mmu X-Git-Tag: v6.1.0-rc2~10^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7039e1f60486662d238ea1a16992a3efe80d7840;p=thirdparty%2Fqemu.git accel/tcg: Remove double bswap for helper_atomic_sto_*_mmu This crept in as either a cut-and-paste error, or rebase error. Fixes: cfec388518d ("atomic_template: add inline trace/plugin helpers") Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20210729004647.282017-24-richard.henderson@linaro.org> Signed-off-by: Richard Henderson --- diff --git a/accel/tcg/atomic_template.h b/accel/tcg/atomic_template.h index d89af4cc1ed..8098a1be318 100644 --- a/accel/tcg/atomic_template.h +++ b/accel/tcg/atomic_template.h @@ -251,7 +251,6 @@ void ATOMIC_NAME(st)(CPUArchState *env, target_ulong addr, ABI_TYPE val, PAGE_WRITE, retaddr); uint16_t info = atomic_trace_st_pre(env, addr, oi); - val = BSWAP(val); val = BSWAP(val); atomic16_set(haddr, val); ATOMIC_MMU_CLEANUP;