diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-08 23:53:16 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2025-07-15 02:56:39 -0400 |
| commit | 749c21cf6d8ff8eff094137c4ca1298c8f714066 (patch) | |
| tree | 41e9945f5ef04da414ba2fe578dba6a54219f09f /cpu-target.c | |
| parent | a37aec2e7d8f7191d29c700629850da5057e446b (diff) | |
| download | focaccia-qemu-749c21cf6d8ff8eff094137c4ca1298c8f714066.tar.gz focaccia-qemu-749c21cf6d8ff8eff094137c4ca1298c8f714066.zip | |
qemu: Convert target_words_bigendian() to TargetInfo API
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250708215320.70426-6-philmd@linaro.org> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'cpu-target.c')
| -rw-r--r-- | cpu-target.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cpu-target.c b/cpu-target.c index 1c90a30759..20db5ff310 100644 --- a/cpu-target.c +++ b/cpu-target.c @@ -22,7 +22,6 @@ #include "system/accel-ops.h" #include "system/cpus.h" #include "exec/cpu-common.h" -#include "exec/tswap.h" #include "exec/replay-core.h" #include "exec/log.h" #include "hw/core/cpu.h" @@ -85,9 +84,3 @@ void cpu_abort(CPUState *cpu, const char *fmt, ...) #endif abort(); } - -#undef target_big_endian -bool target_big_endian(void) -{ - return TARGET_BIG_ENDIAN; -} |