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-mips | |
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-mips')
-rw-r--r-- | target-mips/translate.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-mips/translate.c b/target-mips/translate.c index c909463da5..abbf0677c0 100644 --- a/target-mips/translate.c +++ b/target-mips/translate.c @@ -6786,6 +6786,7 @@ CPUMIPSState *cpu_mips_init (const char *cpu_model) env->cpu_model = def; cpu_exec_init(env); + env->cpu_model_str = cpu_model; cpu_reset(env); return env; } |