[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 09/48] *: Add missing includes of tcg/debug-assert.h
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v3 09/48] *: Add missing includes of tcg/debug-assert.h |
|
Date: |
Tue, 30 May 2023 21:02:51 -0700 |
This had been pulled in from tcg/tcg.h, via exec/cpu_ldst.h,
via exec/exec-all.h, but the include of tcg.h will be removed.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/avr/cpu.c | 1 +
target/rx/cpu.c | 1 +
target/rx/op_helper.c | 1 +
target/tricore/cpu.c | 1 +
4 files changed, 4 insertions(+)
diff --git a/target/avr/cpu.c b/target/avr/cpu.c
index a24c23c247..8f741f258c 100644
--- a/target/avr/cpu.c
+++ b/target/avr/cpu.c
@@ -24,6 +24,7 @@
#include "exec/exec-all.h"
#include "cpu.h"
#include "disas/dis-asm.h"
+#include "tcg/debug-assert.h"
static void avr_cpu_set_pc(CPUState *cs, vaddr value)
{
diff --git a/target/rx/cpu.c b/target/rx/cpu.c
index 67452e310c..157e57da0f 100644
--- a/target/rx/cpu.c
+++ b/target/rx/cpu.c
@@ -24,6 +24,7 @@
#include "exec/exec-all.h"
#include "hw/loader.h"
#include "fpu/softfloat.h"
+#include "tcg/debug-assert.h"
static void rx_cpu_set_pc(CPUState *cs, vaddr value)
{
diff --git a/target/rx/op_helper.c b/target/rx/op_helper.c
index acce650185..dc0092ca99 100644
--- a/target/rx/op_helper.c
+++ b/target/rx/op_helper.c
@@ -23,6 +23,7 @@
#include "exec/helper-proto.h"
#include "exec/cpu_ldst.h"
#include "fpu/softfloat.h"
+#include "tcg/debug-assert.h"
static inline G_NORETURN
void raise_exception(CPURXState *env, int index,
diff --git a/target/tricore/cpu.c b/target/tricore/cpu.c
index d0a9272961..7fa113fed2 100644
--- a/target/tricore/cpu.c
+++ b/target/tricore/cpu.c
@@ -22,6 +22,7 @@
#include "cpu.h"
#include "exec/exec-all.h"
#include "qemu/error-report.h"
+#include "tcg/debug-assert.h"
static inline void set_feature(CPUTriCoreState *env, int feature)
{
--
2.34.1
- [PATCH v3 12/48] target/arm: Fix test of TCG_OVERSIZED_GUEST, (continued)
- [PATCH v3 12/48] target/arm: Fix test of TCG_OVERSIZED_GUEST, Richard Henderson, 2023/05/31
- [PATCH v3 13/48] tcg: Split out tcg/oversized-guest.h, Richard Henderson, 2023/05/31
- [PATCH v3 14/48] tcg: Move TCGv, dup_const_tl definitions to tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 07/48] tcg: Add tlb_fast_offset to TCGContext, Richard Henderson, 2023/05/31
- [PATCH v3 16/48] target/arm: Include helper-gen.h in translator.h, Richard Henderson, 2023/05/31
- [PATCH v3 15/48] tcg: Split tcg/tcg-op-common.h from tcg/tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 21/48] tcg: Move temp_idx and tcgv_i32_temp debug out of line, Richard Henderson, 2023/05/31
- [PATCH v3 22/48] tcg: Split tcg_gen_callN, Richard Henderson, 2023/05/31
- [PATCH v3 10/48] *: Add missing includes of tcg/tcg.h, Richard Henderson, 2023/05/31
- [PATCH v3 09/48] *: Add missing includes of tcg/debug-assert.h,
Richard Henderson <=
- [PATCH v3 18/48] tcg: Remove outdated comments in helper-head.h, Richard Henderson, 2023/05/31
- [PATCH v3 19/48] tcg: Move TCGHelperInfo and dependencies to tcg/helper-info.h, Richard Henderson, 2023/05/31
- [PATCH v3 20/48] tcg: Pass TCGHelperInfo to tcg_gen_callN, Richard Henderson, 2023/05/31
- [PATCH v3 23/48] tcg: Split helper-gen.h, Richard Henderson, 2023/05/31
- [PATCH v3 26/48] tcg: Add guest_mo to TCGContext, Richard Henderson, 2023/05/31
- [PATCH v3 32/48] tcg: Spit out exec/translation-block.h, Richard Henderson, 2023/05/31
- [PATCH v3 37/48] target/arm: Tidy helpers for translation, Richard Henderson, 2023/05/31
- [PATCH v3 30/48] exec-all: Widen tb_page_addr_t for user-only, Richard Henderson, 2023/05/31