[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/10] target/arm: Set disassemble_info::endian value in disas_se
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 03/10] target/arm: Set disassemble_info::endian value in disas_set_info() |
Date: |
Mon, 27 Jan 2025 12:54:19 +0100 |
Have the CPUClass::disas_set_info() callback set the
disassemble_info::endian field.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/arm/cpu.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/target/arm/cpu.c b/target/arm/cpu.c
index f9fdf708653..9de8c799c77 100644
--- a/target/arm/cpu.c
+++ b/target/arm/cpu.c
@@ -1220,6 +1220,8 @@ static void arm_disas_set_info(CPUState *cpu,
disassemble_info *info)
#else
info->endian = BFD_ENDIAN_BIG;
#endif
+ } else {
+ info->endian = BFD_ENDIAN_LITTLE;
}
info->flags &= ~INSN_ARM_BE32;
#ifndef CONFIG_USER_ONLY
--
2.47.1
- [PATCH 00/10] disas: Have CPUClass::disas_set_info() callback set the endianness, Philippe Mathieu-Daudé, 2025/01/27
- [PATCH 01/10] target: Set disassemble_info::endian value for little-endian targets, Philippe Mathieu-Daudé, 2025/01/27
- [PATCH 02/10] target: Set disassemble_info::endian value for big-endian targets, Philippe Mathieu-Daudé, 2025/01/27
- [PATCH 03/10] target/arm: Set disassemble_info::endian value in disas_set_info(),
Philippe Mathieu-Daudé <=
- [PATCH 04/10] target/microblaze: Set disassemble_info::endian value in disas_set_info, Philippe Mathieu-Daudé, 2025/01/27
- [PATCH 05/10] target/mips: Set disassemble_info::endian value in disas_set_info(), Philippe Mathieu-Daudé, 2025/01/27
- [PATCH 06/10] target/ppc: Set disassemble_info::endian value in disas_set_info(), Philippe Mathieu-Daudé, 2025/01/27
- [PATCH 08/10] target/sh4: Set disassemble_info::endian value in disas_set_info(), Philippe Mathieu-Daudé, 2025/01/27