提交 f8ed7070 编写于 作者: P pbrook

Fix typo.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4624 c046a42c-6fe2-441c-8c8c-71466251a162
上级 6e68e076
...@@ -314,7 +314,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -314,7 +314,7 @@ static inline int cpu_mmu_index (CPUState *env)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->ir[30] = newsp; env->ir[30] = newsp;
/* FIXME: Zero syscall return value. */ /* FIXME: Zero syscall return value. */
} }
......
...@@ -411,7 +411,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -411,7 +411,7 @@ static inline int cpu_mmu_index (CPUState *env)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->regs[13] = newsp; env->regs[13] = newsp;
env->regs[0] = 0; env->regs[0] = 0;
} }
......
...@@ -221,7 +221,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -221,7 +221,7 @@ static inline int cpu_mmu_index (CPUState *env)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->regs[14] = newsp; env->regs[14] = newsp;
env->regs[10] = 0; env->regs[10] = 0;
} }
......
...@@ -737,7 +737,7 @@ extern CCTable cc_table[]; ...@@ -737,7 +737,7 @@ extern CCTable cc_table[];
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->regs[R_ESP] = newsp; env->regs[R_ESP] = newsp;
env->regs[R_EAX] = 0; env->regs[R_EAX] = 0;
} }
......
...@@ -229,7 +229,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -229,7 +229,7 @@ static inline int cpu_mmu_index (CPUState *env)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->aregs[7] = newsp; env->aregs[7] = newsp;
env->dregs[0] = 0; env->dregs[0] = 0;
} }
......
...@@ -503,7 +503,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -503,7 +503,7 @@ static inline int cpu_mmu_index (CPUState *env)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->gpr[env->current_tc][29] = newsp; env->gpr[env->current_tc][29] = newsp;
env->gpr[env->current_tc][7] = 0; env->gpr[env->current_tc][7] = 0;
env->gpr[env->current_tc][2] = 0; env->gpr[env->current_tc][2] = 0;
......
...@@ -826,7 +826,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -826,7 +826,7 @@ static inline int cpu_mmu_index (CPUState *env)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
int i; int i;
if (!newsp) if (newsp)
env->gpr[1] = newsp; env->gpr[1] = newsp;
for (i = 7; i < 32; i++) for (i = 7; i < 32; i++)
env->gpr[i] = 0; env->gpr[i] = 0;
......
...@@ -146,7 +146,7 @@ static inline int cpu_mmu_index (CPUState *env) ...@@ -146,7 +146,7 @@ static inline int cpu_mmu_index (CPUState *env)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->gregs[15] = newsp; env->gregs[15] = newsp;
env->gregs[0] = 0; env->gregs[0] = 0;
} }
......
...@@ -406,7 +406,7 @@ static inline int cpu_fpu_enabled(CPUState *env1) ...@@ -406,7 +406,7 @@ static inline int cpu_fpu_enabled(CPUState *env1)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
{ {
if (!newsp) if (newsp)
env->regwptr[22] = newsp; env->regwptr[22] = newsp;
env->regwptr[0] = 0; env->regwptr[0] = 0;
/* FIXME: Do we also need to clear CF? */ /* FIXME: Do we also need to clear CF? */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册