diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2009-08-03 08:43:23 -0700 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-08-03 20:33:40 +0400 |
commit | d11f69b20180f14ba596bf78667403fb7b2020db (patch) | |
tree | 53fb44208d9eadd07615aacaa74df66cf398cd2c | |
parent | Fix Sparse warning about missing prototype (diff) | |
download | qemu-kvm-d11f69b20180f14ba596bf78667403fb7b2020db.tar.gz qemu-kvm-d11f69b20180f14ba596bf78667403fb7b2020db.tar.bz2 qemu-kvm-d11f69b20180f14ba596bf78667403fb7b2020db.zip |
target-ppc: fix cpu_clone_regs
We only need to make sure that the clone syscall looks like it
succeeded, not clobber 60% of the register set.
Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
Signed-off-by: malc <av1474@comtv.ru>
-rw-r--r-- | target-ppc/cpu.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 69c1d5807..148e8c3fe 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -817,11 +817,9 @@ static inline int cpu_mmu_index (CPUState *env) #if defined(CONFIG_USER_ONLY) static inline void cpu_clone_regs(CPUState *env, target_ulong newsp) { - int i; if (newsp) env->gpr[1] = newsp; - for (i = 7; i < 32; i++) - env->gpr[i] = 0; + env->gpr[3] = 0; } #endif |