"qemu/host-utils.h" and "qemu/int128.h" are included a lot in the tree, and don't use any definition from "qemu/bswap.h"... Since it contains a lot of inlined functions, remove it to reduce pointless compilation cycles.
Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- include/qemu/host-utils.h | 1 - include/qemu/int128.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/include/qemu/host-utils.h b/include/qemu/host-utils.h index 0777a2bb60e..181d026b6c7 100644 --- a/include/qemu/host-utils.h +++ b/include/qemu/host-utils.h @@ -30,7 +30,6 @@ #ifndef HOST_UTILS_H #define HOST_UTILS_H -#include "qemu/bswap.h" #include "qemu/int128.h" #ifdef CONFIG_INT128 diff --git a/include/qemu/int128.h b/include/qemu/int128.h index 2b8dd4dec9f..7b3b071c512 100644 --- a/include/qemu/int128.h +++ b/include/qemu/int128.h @@ -1,8 +1,6 @@ #ifndef INT128_H #define INT128_H -#include "qemu/bswap.h" - /* * With TCI, we need to use libffi for interfacing with TCG helpers. * But libffi does not support __int128_t, and therefore cannot pass -- 2.52.0
