diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-01 10:13:20 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 15:07:32 -0700 |
commit | 231a1c0ff46ae442431fb7a6e5d6f36765628b68 (patch) | |
tree | f53f9396e37bb5626769f2a5a762efb377ffd908 | |
parent | 4ff1b33edf95497a8e6f0615a3ae91f736cf1f8a (diff) | |
download | qemu-231a1c0ff46ae442431fb7a6e5d6f36765628b68.zip qemu-231a1c0ff46ae442431fb7a6e5d6f36765628b68.tar.gz qemu-231a1c0ff46ae442431fb7a6e5d6f36765628b68.tar.bz2 |
exec: Restrict 'cpu-ldst-common.h' to accel/tcg/
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r-- | accel/tcg/translator.c | 2 | ||||
-rw-r--r-- | include/accel/tcg/cpu-ldst-common.h (renamed from include/exec/cpu-ldst-common.h) | 6 | ||||
-rw-r--r-- | include/exec/cpu_ldst.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/accel/tcg/translator.c b/accel/tcg/translator.c index c53bbde..034f2f3 100644 --- a/accel/tcg/translator.c +++ b/accel/tcg/translator.c @@ -11,7 +11,7 @@ #include "qemu/bswap.h" #include "qemu/log.h" #include "qemu/error-report.h" -#include "exec/cpu-ldst-common.h" +#include "accel/tcg/cpu-ldst-common.h" #include "accel/tcg/cpu-mmu-index.h" #include "exec/target_page.h" #include "exec/translator.h" diff --git a/include/exec/cpu-ldst-common.h b/include/accel/tcg/cpu-ldst-common.h index c46a6ad..8bf17c2 100644 --- a/include/exec/cpu-ldst-common.h +++ b/include/accel/tcg/cpu-ldst-common.h @@ -4,8 +4,8 @@ * SPDX-License-Identifier: LGPL-2.1-or-later */ -#ifndef CPU_LDST_COMMON_H -#define CPU_LDST_COMMON_H +#ifndef ACCEL_TCG_CPU_LDST_COMMON_H +#define ACCEL_TCG_CPU_LDST_COMMON_H #ifndef CONFIG_TCG #error Can only include this header with TCG @@ -119,4 +119,4 @@ uint32_t cpu_ldl_code_mmu(CPUArchState *env, vaddr addr, uint64_t cpu_ldq_code_mmu(CPUArchState *env, vaddr addr, MemOpIdx oi, uintptr_t ra); -#endif /* CPU_LDST_COMMON_H */ +#endif /* ACCEL_TCG_CPU_LDST_COMMON_H */ diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h index 63847f6..74761ba 100644 --- a/include/exec/cpu_ldst.h +++ b/include/exec/cpu_ldst.h @@ -67,7 +67,7 @@ #endif #include "exec/cpu-common.h" -#include "exec/cpu-ldst-common.h" +#include "accel/tcg/cpu-ldst-common.h" #include "accel/tcg/cpu-mmu-index.h" #include "exec/abi_ptr.h" |