On 17/4/25 23:00, Philippe Mathieu-Daudé wrote:
In commit 98ed8ecfc9d ("exec: introduce target_words_bigendian()
helper") target_words_bigendian() was matching the definition it
was depending on (TARGET_WORDS_BIGENDIAN). Later in commit
ee3eb3a7ce7 ("Replace TARGET_WORDS_BIGENDIAN") the definition was
renamed as TARGET_BIG_ENDIAN but we didn't update the helper.
Do it now mechanically using:
$ sed -i -e s/target_words_bigendian/target_big_endian/g \
$(git grep -wl target_words_bigendian)
Signed-off-by: Philippe Mathieu-Daudé <phi...@linaro.org>
---
include/exec/tswap.h | 12 ++++++------
system/memory-internal.h | 2 +-
cpu-target.c | 4 ++--
hw/core/cpu-system.c | 2 +-
hw/display/vga.c | 2 +-
hw/virtio/virtio.c | 2 +-
system/memory.c | 4 ++--
system/qtest.c | 2 +-
8 files changed, 15 insertions(+), 15 deletions(-)
Patch queued, thanks.