diff options
author | Peter Maydell | 2015-03-11 19:22:15 +0100 |
---|---|---|
committer | Peter Maydell | 2015-03-11 19:22:15 +0100 |
commit | ee74801035b0b5f1fdfd4e31d3a53f511f91c804 (patch) | |
tree | c3f2cf22bc97526c17442fd966c23cf4b849e380 /target-mips/cpu.c | |
parent | Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20150311'... (diff) | |
parent | target-mips: add missing MSACSR and restore fp_status and hflags (diff) | |
download | qemu-ee74801035b0b5f1fdfd4e31d3a53f511f91c804.tar.gz qemu-ee74801035b0b5f1fdfd4e31d3a53f511f91c804.tar.xz qemu-ee74801035b0b5f1fdfd4e31d3a53f511f91c804.zip |
Merge remote-tracking branch 'remotes/lalrae/tags/mips-20150311' into staging
MIPS patches 2015-03-11
Changes:
* use VMStateDescription for MIPS CPU
# gpg: Signature made Wed Mar 11 15:01:52 2015 GMT using RSA key ID 0B29DA6B
# gpg: Can't check signature: public key not found
* remotes/lalrae/tags/mips-20150311:
target-mips: add missing MSACSR and restore fp_status and hflags
target-mips: replace cpu_save/cpu_load with VMStateDescription
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target-mips/cpu.c')
-rw-r--r-- | target-mips/cpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-mips/cpu.c b/target-mips/cpu.c index 98dc94e74b..958c999f0a 100644 --- a/target-mips/cpu.c +++ b/target-mips/cpu.c @@ -148,6 +148,7 @@ static void mips_cpu_class_init(ObjectClass *c, void *data) cc->do_unassigned_access = mips_cpu_unassigned_access; cc->do_unaligned_access = mips_cpu_do_unaligned_access; cc->get_phys_page_debug = mips_cpu_get_phys_page_debug; + cc->vmsd = &vmstate_mips_cpu; #endif cc->gdb_num_core_regs = 73; |