On 4/18/22 12:10, Leandro Lupori wrote:
+static inline uint64_t sh_swap64(CPUArchState *env, uint64_t val) +{ + return msr_le ? val : tswap64(val); +} + +static inline uint32_t sh_swap32(CPUArchState *env, uint32_t val) +{ + return msr_le ? val : tswap32(val); +}
That doesn't work -- tswap itself is conditional. You want return msr_le ? le32_to_cpu(x) : be32_to_cpu(x); etc. One of them will be a nop, and the other will bswap. r~