diff options
author | Richard Henderson | 2020-08-20 07:05:29 +0200 |
---|---|---|
committer | Richard Henderson | 2020-09-01 16:41:38 +0200 |
commit | af20a93acb5e9da63976e113656d09e4bcbdddac (patch) | |
tree | c2f59a14406e4cae4e9deb21890a079b39810e75 /target/microblaze/cpu.h | |
parent | target/microblaze: Split out BTR from env->sregs (diff) | |
download | qemu-af20a93acb5e9da63976e113656d09e4bcbdddac.tar.gz qemu-af20a93acb5e9da63976e113656d09e4bcbdddac.tar.xz qemu-af20a93acb5e9da63976e113656d09e4bcbdddac.zip |
target/microblaze: Split out EDR from env->sregs
Finish eliminating the sregs array in favor of individual members.
Does not correct the width of EDR, yet.
Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/microblaze/cpu.h')
-rw-r--r-- | target/microblaze/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index deddb47abb..610ddfb719 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -242,7 +242,7 @@ struct CPUMBState { uint64_t esr; uint64_t fsr; uint64_t btr; - uint64_t sregs[14]; + uint64_t edr; float_status fp_status; /* Stack protectors. Yes, it's a hw feature. */ uint32_t slr, shr; |