diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-09 02:22:57 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-09 02:22:57 +0000 |
commit | 01ba98161f954621bcf557ad8d5a0838d18000a1 (patch) | |
tree | 9f95161d17b12c2f2617b9441b8653891ee9b041 /target-ppc | |
parent | 1b66074b2f93a5d3f337d2aab10504426e756e50 (diff) |
Handle cpu_model in copy_cpu(), by Kirill A. Shutemov.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3778 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc')
-rw-r--r-- | target-ppc/helper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 7a32d4a27f..a808454a20 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -2976,6 +2976,7 @@ CPUPPCState *cpu_ppc_init (const char *cpu_model) if (!env) return NULL; cpu_exec_init(env); + env->cpu_model_str = cpu_model; cpu_ppc_register_internal(env, def); cpu_ppc_reset(env); return env; |