Remove dead code: - unused fields in CPUTriCoreState - (unexisting) tricore_def_t structure - forward declaration of tricore_boot_info structure (declared in "hw/tricore/tricore.h", used once in hw/tricore/tricore_testboard.c).
Reviewed-by: Richard Henderson <[email protected]> Reviewed-by: Bastian Koppelmann <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> --- v2: Do not remove 'hflags' in case it used: https://lore.kernel.org/qemu-devel/[email protected]/ --- target/tricore/cpu.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/target/tricore/cpu.h b/target/tricore/cpu.h index 3b9c533a7c..4f6d936824 100644 --- a/target/tricore/cpu.h +++ b/target/tricore/cpu.h @@ -25,10 +25,6 @@ #include "qemu/cpu-float.h" #include "tricore-defs.h" -struct tricore_boot_info; - -typedef struct tricore_def_t tricore_def_t; - typedef struct CPUArchState { /* GPR Register */ uint32_t gpr_a[16]; @@ -180,15 +176,10 @@ typedef struct CPUArchState { /* Floating Point Registers */ float_status fp_status; /* QEMU */ - int error_code; uint32_t hflags; /* CPU State */ /* Internal CPU feature flags. */ uint64_t features; - - const tricore_def_t *cpu_model; - void *irq[8]; - struct QEMUTimer *timer; /* Internal timer */ } CPUTriCoreState; /** -- 2.38.1
