diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-09-12 17:47:56 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-10-03 08:01:02 -0700 |
| commit | 3b3d7df545ff30762b169147398dbf90c42eb452 (patch) | |
| tree | c387d03683d0643e6975c3387beda3c5ed8d9fd5 /target/mips/cpu.h | |
| parent | 5d30bdcb1b72ec1d44397ee7047417617066d97a (diff) | |
| download | focaccia-qemu-3b3d7df545ff30762b169147398dbf90c42eb452.tar.gz focaccia-qemu-3b3d7df545ff30762b169147398dbf90c42eb452.zip | |
accel/tcg: Move CPUNegativeOffsetState into CPUState
Retain the separate structure to emphasize its importance. Enforce CPUArchState always follows CPUState without padding. Reviewed-by: Anton Johansson <anjo@rev.ng> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/mips/cpu.h')
| -rw-r--r-- | target/mips/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/mips/cpu.h b/target/mips/cpu.h index 6d6af1f2a8..67f8e8b988 100644 --- a/target/mips/cpu.h +++ b/target/mips/cpu.h @@ -1213,10 +1213,10 @@ struct ArchCPU { CPUState parent_obj; /*< public >*/ + CPUMIPSState env; + Clock *clock; Clock *count_div; /* Divider for CP0_Count clock */ - CPUNegativeOffsetState neg; - CPUMIPSState env; }; |