diff options
Diffstat (limited to 'target-moxie')
-rw-r--r-- | target-moxie/cpu.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target-moxie/cpu.c b/target-moxie/cpu.c index 6b035aa..3af3779 100644 --- a/target-moxie/cpu.c +++ b/target-moxie/cpu.c @@ -114,6 +114,13 @@ static void moxie_cpu_class_init(ObjectClass *oc, void *data) cc->get_phys_page_debug = moxie_cpu_get_phys_page_debug; cc->vmsd = &vmstate_moxie_cpu; #endif + + /* + * Reason: moxie_cpu_initfn() calls cpu_exec_init(), which saves + * the object in cpus -> dangling pointer after final + * object_unref(). + */ + dc->cannot_destroy_with_object_finalize_yet = true; } static void moxielite_initfn(Object *obj) |