mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-18 05:45:29 -07:00
target/alpha: Use explicit little-endian LD/ST API
The Alpha architecture uses little endianness. Directly use
the little-endian LD/ST API.
Mechanical change using:
$ end=le; \
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/alpha/); \
done
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20241004163042.85922-7-philmd@linaro.org>
This commit is contained in:
parent
f026579802
commit
c9ddc704f9
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ int alpha_cpu_gdb_read_register(CPUState *cs, GByteArray *mem_buf, int n)
|
|||
int alpha_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
{
|
||||
CPUAlphaState *env = cpu_env(cs);
|
||||
target_ulong tmp = ldq_p(mem_buf);
|
||||
target_ulong tmp = ldq_le_p(mem_buf);
|
||||
CPU_DoubleU d;
|
||||
|
||||
switch (n) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue