diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-02-09 08:55:48 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-02-15 15:53:12 +0100 |
commit | fa82742621c3d26cde6383b1c0f891d23f01078f (patch) | |
tree | 40d9b4f947e986768cc85e12a256fada4d28e0f1 /target/mips/sysemu | |
parent | ee58fddcbbb2374b62065cd97888e4478aa02a95 (diff) |
target/mips: Remove CPUMIPSState::CP0_SAARI field
Remove the unused CP0_SAARI register.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240209090513.9401-10-philmd@linaro.org>
Diffstat (limited to 'target/mips/sysemu')
-rw-r--r-- | target/mips/sysemu/machine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/mips/sysemu/machine.c b/target/mips/sysemu/machine.c index 6d1299a89e..213fd637fc 100644 --- a/target/mips/sysemu/machine.c +++ b/target/mips/sysemu/machine.c @@ -281,7 +281,7 @@ const VMStateDescription vmstate_mips_cpu = { VMSTATE_UINT32(env.CP0_BadInstrP, MIPSCPU), VMSTATE_UINT32(env.CP0_BadInstrX, MIPSCPU), VMSTATE_INT32(env.CP0_Count, MIPSCPU), - VMSTATE_UINT32(env.CP0_SAARI, MIPSCPU), + VMSTATE_UNUSED(sizeof(uint32_t)), /* was CP0_SAARI */ VMSTATE_UNUSED(2 * sizeof(uint64_t)), /* was CP0_SAAR[2] */ VMSTATE_UINTTL(env.CP0_EntryHi, MIPSCPU), VMSTATE_INT32(env.CP0_Compare, MIPSCPU), |