From: Philippe Mathieu-Daudé Date: Mon, 17 Feb 2025 11:21:42 +0000 (+0100) Subject: accel/tcg: Include missing bswap headers in user-exec.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a523b62c8573c09d96472e06486bb58740945215;p=qemu.git accel/tcg: Include missing bswap headers in user-exec.c Commit 35c653c4029 ("tcg: Add 128-bit guest memory primitives") introduced the use of bswap128() which is declared in "qemu/int128.h", commit de95016dfbf ("accel/tcg: Implement helper_{ld,st}*_mmu for user-only") introduced the other bswap*() uses, which are declared in "qemu/bswap.h". Include the missing headers. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20250217130610.18313-3-philmd@linaro.org> --- diff --git a/accel/tcg/user-exec.c b/accel/tcg/user-exec.c index c4454100ad..9d53c9440e 100644 --- a/accel/tcg/user-exec.c +++ b/accel/tcg/user-exec.c @@ -30,6 +30,8 @@ #include "exec/page-protection.h" #include "exec/helper-proto.h" #include "qemu/atomic128.h" +#include "qemu/bswap.h" +#include "qemu/int128.h" #include "trace.h" #include "tcg/tcg-ldst.h" #include "internal-common.h"