aboutsummaryrefslogtreecommitdiff
path: root/target/loongarch
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-03-08 12:48:13 -0800
committerRichard Henderson <richard.henderson@linaro.org>2023-05-11 09:53:41 +0100
commit335dfd253fc242b009a1b9b5d4fffbf4ea52928d (patch)
tree65ecb25e2af9e5be78657452772f8592e7a8c4c8 /target/loongarch
parent592134617c98f37b8b39c6dd684e5a1832c071d2 (diff)
downloadqemu-335dfd253fc242b009a1b9b5d4fffbf4ea52928d.zip
qemu-335dfd253fc242b009a1b9b5d4fffbf4ea52928d.tar.gz
qemu-335dfd253fc242b009a1b9b5d4fffbf4ea52928d.tar.bz2
target/loongarch: Do not include tcg-ldst.h
This header is supposed to be private to tcg and in fact does not need to be included here at all. Reviewed-by: Song Gao <gaosong@loongson.cn> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/loongarch')
-rw-r--r--target/loongarch/csr_helper.c1
-rw-r--r--target/loongarch/iocsr_helper.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/target/loongarch/csr_helper.c b/target/loongarch/csr_helper.c
index 7e02787..6526367 100644
--- a/target/loongarch/csr_helper.c
+++ b/target/loongarch/csr_helper.c
@@ -15,7 +15,6 @@
#include "exec/cpu_ldst.h"
#include "hw/irq.h"
#include "cpu-csr.h"
-#include "tcg/tcg-ldst.h"
target_ulong helper_csrrd_pgd(CPULoongArchState *env)
{
diff --git a/target/loongarch/iocsr_helper.c b/target/loongarch/iocsr_helper.c
index 505853e..dda9845 100644
--- a/target/loongarch/iocsr_helper.c
+++ b/target/loongarch/iocsr_helper.c
@@ -12,7 +12,6 @@
#include "exec/helper-proto.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
-#include "tcg/tcg-ldst.h"
#define GET_MEMTXATTRS(cas) \
((MemTxAttrs){.requester_id = env_cpu(cas)->cpu_index})