aboutsummaryrefslogtreecommitdiff
path: root/target/tricore
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-09-13 17:36:27 -0700
committerRichard Henderson <richard.henderson@linaro.org>2023-10-04 11:03:54 -0700
commit8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14 (patch)
tree03044a649b433ed87138b1203a612185164b72d0 /target/tricore
parentb77af26e973705e8fd96cff102fc978ee44043da (diff)
downloadqemu-8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14.zip
qemu-8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14.tar.gz
qemu-8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14.tar.bz2
accel/tcg: Remove cpu_set_cpustate_pointers
This function is now empty, so remove it. In the case of m68k and tricore, this empties the class instance initfn, so remove those as well. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/tricore')
-rw-r--r--target/tricore/cpu.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/target/tricore/cpu.c b/target/tricore/cpu.c
index 50aec6c..d147762 100644
--- a/target/tricore/cpu.c
+++ b/target/tricore/cpu.c
@@ -124,14 +124,6 @@ static void tricore_cpu_realizefn(DeviceState *dev, Error **errp)
tcc->parent_realize(dev, errp);
}
-
-static void tricore_cpu_initfn(Object *obj)
-{
- TriCoreCPU *cpu = TRICORE_CPU(obj);
-
- cpu_set_cpustate_pointers(cpu);
-}
-
static ObjectClass *tricore_cpu_class_by_name(const char *cpu_model)
{
ObjectClass *oc;
@@ -231,7 +223,6 @@ static const TypeInfo tricore_cpu_type_infos[] = {
.parent = TYPE_CPU,
.instance_size = sizeof(TriCoreCPU),
.instance_align = __alignof(TriCoreCPU),
- .instance_init = tricore_cpu_initfn,
.abstract = true,
.class_size = sizeof(TriCoreCPUClass),
.class_init = tricore_cpu_class_init,