* [Qemu-devel] [4624] Fix typo.
@ 2008-05-30 17:54 Paul Brook
0 siblings, 0 replies; only message in thread
From: Paul Brook @ 2008-05-30 17:54 UTC (permalink / raw)
To: qemu-devel
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? */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-05-30 17:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-30 17:54 [Qemu-devel] [4624] Fix typo Paul Brook
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).