Re: [Qemu-devel] [PATCH 2/8] tcg: Avoid stores to unaligned addresses

2014-04-01 Thread Alex Bennée
Richard Henderson writes: > From: Peter Maydell > > Avoid stores to unaligned addresses in TCG code generation, by using the > usual memcpy() approach. (Using bswap.h would drag a lot of QEMU baggage > into TCG, so it's simpler just to do direct memcpy() here.) I notice bswap.h has an interest

[Qemu-devel] [PATCH 2/8] tcg: Avoid stores to unaligned addresses

2014-03-28 Thread Richard Henderson
From: Peter Maydell Avoid stores to unaligned addresses in TCG code generation, by using the usual memcpy() approach. (Using bswap.h would drag a lot of QEMU baggage into TCG, so it's simpler just to do direct memcpy() here.) Signed-off-by: Peter Maydell Signed-off-by: Richard Henderson --- t