From 6b7432786948250bb4b1da7770e94552a5b06af3 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Tue, 18 Aug 2009 18:04:38 +0000 Subject: [PATCH] Sparc32/64: Fix user emulator breakage Signed-off-by: Blue Swirl --- target-sparc/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-sparc/helper.c b/target-sparc/helper.c index 31b61bc42f..920432cb19 100644 --- a/target-sparc/helper.c +++ b/target-sparc/helper.c @@ -684,6 +684,7 @@ void cpu_reset(CPUSPARCState *env) env->wim = 1; #endif env->regwptr = env->regbase + (env->cwp * 16); + CC_OP = CC_OP_FLAGS; #if defined(CONFIG_USER_ONLY) #ifdef TARGET_SPARC64 env->cleanwin = env->nwindows - 2; @@ -697,7 +698,6 @@ void cpu_reset(CPUSPARCState *env) #endif env->psrs = 1; env->psrps = 1; - CC_OP = CC_OP_FLAGS; #ifdef TARGET_SPARC64 env->pstate = PS_PRIV|PS_RED|PS_PEF|PS_AG; env->hpstate = HS_PRIV;