diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2020-08-19 21:54:38 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2020-09-01 07:41:38 -0700 |
commit | 5a8e01366c5dfe93f608e7d37f385962495d5161 (patch) | |
tree | ca9cded97f936ff994bec3ee8bd21f86675805b6 /target/microblaze/cpu.h | |
parent | 78e9caf2f9410c8b90bb6d5a6449c750056c3f8a (diff) | |
download | qemu-5a8e01366c5dfe93f608e7d37f385962495d5161.zip qemu-5a8e01366c5dfe93f608e7d37f385962495d5161.tar.gz qemu-5a8e01366c5dfe93f608e7d37f385962495d5161.tar.bz2 |
target/microblaze: Split out FSR from env->sregs
Continue eliminating the sregs array in favor of individual members.
Does not correct the width of FSR, 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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h index 7d94af4..bcafef9 100644 --- a/target/microblaze/cpu.h +++ b/target/microblaze/cpu.h @@ -240,6 +240,7 @@ struct CPUMBState { uint64_t msr; uint64_t ear; uint64_t esr; + uint64_t fsr; uint64_t sregs[14]; float_status fp_status; /* Stack protectors. Yes, it's a hw feature. */ |