From 6cca7ad686de0270fe30ae303e31c6a27b53d7a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Fri, 6 Apr 2012 15:09:01 +0200 Subject: target-ppc: Start QOM'ifying CPU init MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move code not dependent on ppc_def_t from cpu_ppc_init() into an initfn. Signed-off-by: Andreas Färber Acked-by: David Gibson --- target-ppc/helper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'target-ppc/helper.c') diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 0d904ddb10..c5de0eaa81 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -3196,10 +3196,11 @@ CPUPPCState *cpu_ppc_init (const char *cpu_model) cpu = POWERPC_CPU(object_new(TYPE_POWERPC_CPU)); env = &cpu->env; - cpu_exec_init(env); + if (tcg_enabled()) { ppc_translate_init(); } + env->cpu_model_str = cpu_model; cpu_ppc_register_internal(env, def); -- cgit v1.2.1