diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-12-12 11:34:25 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-26 17:03:05 +0200 |
| commit | 425082612c012843d8b33fa0d35966adf5600c47 (patch) | |
| tree | f4998d44fed185a83d0a067e63cf60dfdf424df0 /disas/disas.c | |
| parent | 77166c4568eb7cbd81afeecf4975c607b734f1f0 (diff) | |
| download | focaccia-qemu-425082612c012843d8b33fa0d35966adf5600c47.tar.gz focaccia-qemu-425082612c012843d8b33fa0d35966adf5600c47.zip | |
exec: Declare target_words_bigendian() in 'exec/tswap.h'
We usually check target endianess before swapping values, so target_words_bigendian() declaration makes sense in "exec/tswap.h" with the target swapping helpers. Remove "hw/core/cpu.h" when it was only included to get the target_words_bigendian() declaration. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Anton Johansson <anjo@rev.ng> Message-Id: <20231212123401.37493-16-philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'disas/disas.c')
| -rw-r--r-- | disas/disas.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/disas/disas.c b/disas/disas.c index 7e3b0bb46c..ec14715ecd 100644 --- a/disas/disas.c +++ b/disas/disas.c @@ -6,6 +6,7 @@ #include "disas/disas.h" #include "disas/capstone.h" #include "hw/core/cpu.h" +#include "exec/tswap.h" #include "exec/memory.h" /* Filled in by elfload.c. Simplistic, but will do for now. */ |