qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4624] Fix typo.


From: Paul Brook
Subject: [Qemu-devel] [4624] Fix typo.
Date: Fri, 30 May 2008 17:54:15 +0000

Revision: 4624
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4624
Author:   pbrook
Date:     2008-05-30 17:54:15 +0000 (Fri, 30 May 2008)

Log Message:
-----------
Fix typo.

Modified Paths:
--------------
    trunk/target-alpha/cpu.h
    trunk/target-arm/cpu.h
    trunk/target-cris/cpu.h
    trunk/target-i386/cpu.h
    trunk/target-m68k/cpu.h
    trunk/target-mips/cpu.h
    trunk/target-ppc/cpu.h
    trunk/target-sh4/cpu.h
    trunk/target-sparc/cpu.h

Modified: trunk/target-alpha/cpu.h
===================================================================
--- trunk/target-alpha/cpu.h    2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-alpha/cpu.h    2008-05-30 17:54:15 UTC (rev 4624)
@@ -314,7 +314,7 @@
 #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.  */
 }

Modified: trunk/target-arm/cpu.h
===================================================================
--- trunk/target-arm/cpu.h      2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-arm/cpu.h      2008-05-30 17:54:15 UTC (rev 4624)
@@ -411,7 +411,7 @@
 #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;
 }

Modified: trunk/target-cris/cpu.h
===================================================================
--- trunk/target-cris/cpu.h     2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-cris/cpu.h     2008-05-30 17:54:15 UTC (rev 4624)
@@ -221,7 +221,7 @@
 #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;
 }

Modified: trunk/target-i386/cpu.h
===================================================================
--- trunk/target-i386/cpu.h     2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-i386/cpu.h     2008-05-30 17:54:15 UTC (rev 4624)
@@ -737,7 +737,7 @@
 #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;
 }

Modified: trunk/target-m68k/cpu.h
===================================================================
--- trunk/target-m68k/cpu.h     2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-m68k/cpu.h     2008-05-30 17:54:15 UTC (rev 4624)
@@ -229,7 +229,7 @@
 #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;
 }

Modified: trunk/target-mips/cpu.h
===================================================================
--- trunk/target-mips/cpu.h     2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-mips/cpu.h     2008-05-30 17:54:15 UTC (rev 4624)
@@ -503,7 +503,7 @@
 #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;

Modified: trunk/target-ppc/cpu.h
===================================================================
--- trunk/target-ppc/cpu.h      2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-ppc/cpu.h      2008-05-30 17:54:15 UTC (rev 4624)
@@ -826,7 +826,7 @@
 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;

Modified: trunk/target-sh4/cpu.h
===================================================================
--- trunk/target-sh4/cpu.h      2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-sh4/cpu.h      2008-05-30 17:54:15 UTC (rev 4624)
@@ -146,7 +146,7 @@
 #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;
 }

Modified: trunk/target-sparc/cpu.h
===================================================================
--- trunk/target-sparc/cpu.h    2008-05-30 17:22:15 UTC (rev 4623)
+++ trunk/target-sparc/cpu.h    2008-05-30 17:54:15 UTC (rev 4624)
@@ -406,7 +406,7 @@
 #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?  */






reply via email to

[Prev in Thread] Current Thread [Next in Thread]