target/tricore: Use explicit little-endian LD/ST API
The TriCore 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/tricore/); \ done Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241004163042.85922-15-philmd@linaro.org>
This commit is contained in:
parent
2a99b2af2c
commit
e01e1c7e2e
@ -124,7 +124,7 @@ int tricore_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
CPUTriCoreState *env = cpu_env(cs);
|
||||
uint32_t tmp;
|
||||
|
||||
tmp = ldl_p(mem_buf);
|
||||
tmp = ldl_le_p(mem_buf);
|
||||
|
||||
if (n < 16) { /* data registers */
|
||||
env->gpr_d[n] = tmp;
|
||||
|
Loading…
Reference in New Issue
Block a user