]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/s390x: Replace ldtul_p() -> ldq_p()
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 4 Oct 2024 16:30:20 +0000 (13:30 -0300)
committerThomas Huth <thuth@redhat.com>
Mon, 7 Oct 2024 09:33:20 +0000 (11:33 +0200)
commita0bc3cefe287cdaf604817e0477bb03a04b88b34
tree25de9bd52acb6da082bd856f7ee89faaf7c15435
parentc76c86fba53801769df19e9cf72630240f7eb256
target/s390x: Replace ldtul_p() -> ldq_p()

The S390X  target is only built for 64-bit.
Using ldtul_p() is pointless, replace by ldq_p().

Mechanical change doing:

  $ sed -i -e 's/ldtul_p/ldq_p/' $(git grep -wl ldtul_p target/s390x/)

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20241004163042.85922-5-philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
target/s390x/gdbstub.c