diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-02-20 10:35:51 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-02-20 10:35:51 +0000 |
commit | 1456364ff0900893f81f8d06fb1b42e5c2ad8a23 (patch) | |
tree | 3e1a283126e5020237254db66e8971fc2a498c73 /target-arm/cpu.h | |
parent | 99f678a679857d83b9709127b0f047551d7e3c45 (diff) |
target-arm: Remove unused ARMCPUState sr substruct
Remove the 'struct sr' from ARMCPUState -- it isn't actually used and is
a hangover from the original separate system register implementation used
by the SuSE linux-user-mode-only AArch64 target.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Diffstat (limited to 'target-arm/cpu.h')
-rw-r--r-- | target-arm/cpu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 52894fc33e..ab57f554a0 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -217,11 +217,6 @@ typedef struct CPUARMState { uint32_t c15_power_control; /* power control */ } cp15; - /* System registers (AArch64) */ - struct { - uint64_t tpidr_el0; - } sr; - struct { uint32_t other_sp; uint32_t vecbase; |