[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 07/18] system: Remove unnecessary 'exec/translate-all.h' include
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 07/18] system: Remove unnecessary 'exec/translate-all.h' include |
Date: |
Thu, 12 Dec 2024 19:53:30 +0100 |
At this point "exec/translate-all.h" only declare
tb_check_watchpoint(), which isn't used by any of
cpu-target.c or system/physmem.c, so remove its
inclusion.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
cpu-target.c | 1 -
system/physmem.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/cpu-target.c b/cpu-target.c
index 5a7c3290814..4a88f1c6db8 100644
--- a/cpu-target.c
+++ b/cpu-target.c
@@ -41,7 +41,6 @@
#include "exec/cpu-common.h"
#include "exec/exec-all.h"
#include "exec/tb-flush.h"
-#include "exec/translate-all.h"
#include "exec/log.h"
#include "hw/core/accel-cpu.h"
#include "trace/trace-root.h"
diff --git a/system/physmem.c b/system/physmem.c
index 93c0ff60eb4..0fa6c37c774 100644
--- a/system/physmem.c
+++ b/system/physmem.c
@@ -61,7 +61,6 @@
#include "qemu/rcu_queue.h"
#include "qemu/main-loop.h"
-#include "exec/translate-all.h"
#include "system/replay.h"
#include "exec/memory-internal.h"
--
2.45.2
- [PATCH 03/18] include: Include missing 'qemu/clang-tsa.h' header, (continued)
- [PATCH 04/18] accel/tcg: Declare mmap_[un]lock() in 'exec/page-protection.h', Philippe Mathieu-Daudé, 2024/12/12
- [PATCH 05/18] accel/tcg: Use tb_page_addr_t type in page_unprotect(), Philippe Mathieu-Daudé, 2024/12/12
- [PATCH 06/18] accel/tcg: Move page_[un]protect() to 'user/page-protection.h', Philippe Mathieu-Daudé, 2024/12/12
- [PATCH 07/18] system: Remove unnecessary 'exec/translate-all.h' include,
Philippe Mathieu-Daudé <=
- [PATCH 08/18] accel/tcg: Move 'exec/translate-all.h' -> 'tb-internal.h', Philippe Mathieu-Daudé, 2024/12/12
- [PATCH 09/18] accel/tcg: Un-inline log_pc(), Philippe Mathieu-Daudé, 2024/12/12
- [PATCH 10/18] accel/tcg: Move TranslationBlock declarations to 'tb-internal.h', Philippe Mathieu-Daudé, 2024/12/12
- [PATCH 11/18] accel/tcg: Move user-related declarations out of 'exec/cpu-all.h' (1/4), Philippe Mathieu-Daudé, 2024/12/12