aboutsummaryrefslogtreecommitdiff
path: root/target-i386
diff options
context:
space:
mode:
Diffstat (limited to 'target-i386')
-rw-r--r--target-i386/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h
index 7d4551e765..56cdd97506 100644
--- a/target-i386/cpu.h
+++ b/target-i386/cpu.h
@@ -737,7 +737,7 @@ extern CCTable cc_table[];
#if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{
- if (!newsp)
+ if (newsp)
env->regs[R_ESP] = newsp;
env->regs[R_EAX] = 0;
}