Fix typo.
authorpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 30 May 2008 17:54:15 +0000 (17:54 +0000)
committerpbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 30 May 2008 17:54:15 +0000 (17:54 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4624 c046a42c-6fe2-441c-8c8c-71466251a162

target-alpha/cpu.h
target-arm/cpu.h
target-cris/cpu.h
target-i386/cpu.h
target-m68k/cpu.h
target-mips/cpu.h
target-ppc/cpu.h
target-sh4/cpu.h
target-sparc/cpu.h

index 0c1b580..e9b2b07 100644 (file)
@@ -314,7 +314,7 @@ static inline int cpu_mmu_index (CPUState *env)
 #if defined(CONFIG_USER_ONLY)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
-    if (!newsp)
+    if (newsp)
         env->ir[30] = newsp;
     /* FIXME: Zero syscall return value.  */
 }
index 1c51d2d..5005bf6 100644 (file)
@@ -411,7 +411,7 @@ static inline int cpu_mmu_index (CPUState *env)
 #if defined(CONFIG_USER_ONLY)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
-    if (!newsp)
+    if (newsp)
         env->regs[13] = newsp;
     env->regs[0] = 0;
 }
index ea86bf9..a4f016f 100644 (file)
@@ -221,7 +221,7 @@ static inline int cpu_mmu_index (CPUState *env)
 #if defined(CONFIG_USER_ONLY)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
-    if (!newsp)
+    if (newsp)
         env->regs[14] = newsp;
     env->regs[10] = 0;
 }
index 7d4551e..56cdd97 100644 (file)
@@ -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;
 }
index 7691452..cfeafc0 100644 (file)
@@ -229,7 +229,7 @@ static inline int cpu_mmu_index (CPUState *env)
 #if defined(CONFIG_USER_ONLY)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
-    if (!newsp)
+    if (newsp)
         env->aregs[7] = newsp;
     env->dregs[0] = 0;
 }
index f9fcafb..964a560 100644 (file)
@@ -503,7 +503,7 @@ static inline int cpu_mmu_index (CPUState *env)
 #if defined(CONFIG_USER_ONLY)
 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][7] = 0;
     env->gpr[env->current_tc][2] = 0;
index 06dc083..d08bbba 100644 (file)
@@ -826,7 +826,7 @@ static inline int cpu_mmu_index (CPUState *env)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
     int i;
-    if (!newsp)
+    if (newsp)
         env->gpr[1] = newsp;
     for (i = 7; i < 32; i++)
         env->gpr[i] = 0;
index 9294b94..c349bc8 100644 (file)
@@ -146,7 +146,7 @@ static inline int cpu_mmu_index (CPUState *env)
 #if defined(CONFIG_USER_ONLY)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
-    if (!newsp)
+    if (newsp)
         env->gregs[15] = newsp;
     env->gregs[0] = 0;
 }
index 54807fb..ad9aeb8 100644 (file)
@@ -406,7 +406,7 @@ static inline int cpu_fpu_enabled(CPUState *env1)
 #if defined(CONFIG_USER_ONLY)
 static inline void cpu_clone_regs(CPUState *env, target_ulong newsp)
 {
-    if (!newsp)
+    if (newsp)
         env->regwptr[22] = newsp;
     env->regwptr[0] = 0;
     /* FIXME: Do we also need to clear CF?  */