diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-07-27 11:10:22 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-10-13 08:46:42 -0700 |
commit | d2ba80265739d1699dd33b93ed7db8d46e875ab6 (patch) | |
tree | 31a0b1a3985ef18d8c7cbfc59ac87df052b40c55 /accel | |
parent | 1a2eaf9e3897b0c51ef65e676c9bbd125506dafd (diff) | |
download | qemu-d2ba80265739d1699dd33b93ed7db8d46e875ab6.zip qemu-d2ba80265739d1699dd33b93ed7db8d46e875ab6.tar.gz qemu-d2ba80265739d1699dd33b93ed7db8d46e875ab6.tar.bz2 |
tcg: Move helper_*_mmu decls to tcg/tcg-ldst.h
These functions have been replaced by cpu_*_mmu as the
most proper interface to use from target code.
Hide these declarations from code that should not use them.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r-- | accel/tcg/cputlb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c index b350caf..b69a953 100644 --- a/accel/tcg/cputlb.c +++ b/accel/tcg/cputlb.c @@ -39,6 +39,7 @@ #ifdef CONFIG_PLUGIN #include "qemu/plugin-memory.h" #endif +#include "tcg/tcg-ldst.h" /* DEBUG defines, enable DEBUG_TLB_LOG to log to the CPU_LOG_MMU target */ /* #define DEBUG_TLB */ |