diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-09-13 17:36:27 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-04 11:03:54 -0700 |
| commit | 8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14 (patch) | |
| tree | 03044a649b433ed87138b1203a612185164b72d0 /target/mips/cpu.c | |
| parent | b77af26e973705e8fd96cff102fc978ee44043da (diff) | |
| download | focaccia-qemu-8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14.tar.gz focaccia-qemu-8fa08d7ec7d8c36fc2c96bd135cb09c086b26a14.zip | |
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/mips/cpu.c')
| -rw-r--r-- | target/mips/cpu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/mips/cpu.c b/target/mips/cpu.c index fee791aa44..a0023edd43 100644 --- a/target/mips/cpu.c +++ b/target/mips/cpu.c @@ -504,7 +504,6 @@ static void mips_cpu_initfn(Object *obj) CPUMIPSState *env = &cpu->env; MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(obj); - cpu_set_cpustate_pointers(cpu); cpu->clock = qdev_init_clock_in(DEVICE(obj), "clk-in", NULL, cpu, 0); cpu->count_div = clock_new(OBJECT(obj), "clk-div-count"); env->count_clock = clock_new(OBJECT(obj), "clk-count"); |