On 04/10/2024 18.30, Philippe Mathieu-Daudé wrote:
The S390X architecture uses big endianness. Directly use
the big-endian LD/ST API.
Mechanical change using:
$ end=be; \
for acc in uw w l q tul; do \
sed -i -e "s/ld${acc}_p(/ld${acc}_${end}_p(/" \
-e "s/st${acc}_p(/st${acc}_${end}_p(/" \
$(git grep -wlE '(ld|st)t?u?[wlq]_p' target/s390x/); \
done
Signed-off-by: Philippe Mathieu-Daudé <phi...@linaro.org>
---
target/s390x/gdbstub.c | 34 +++++++++++++++++-----------------
target/s390x/ioinst.c | 2 +-
2 files changed, 18 insertions(+), 18 deletions(-)
Reviewed-by: Thomas Huth <th...@redhat.com>