diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-27 17:29:35 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-27 17:29:35 +0000 |
commit | a32ff1ad95c4f09420c4b5e19dfd86ded0d2bc79 (patch) | |
tree | 18d22c870716e299295c934bf179b95aafba0a4e /linux-user/main.c | |
parent | 8378e71f136a021e795d41ceae64eedadcff291c (diff) |
PowerPC user-mode fix: MSR is now entirelly set-up in the cpu_reset routine.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3457 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/main.c')
-rw-r--r-- | linux-user/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 7590db80a6..cac9561ba1 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -2168,7 +2168,6 @@ int main(int argc, char **argv) } cpu_ppc_register(env, def); cpu_ppc_reset(env); - env->msr = regs->msr & ~((1 << 6) | (1 << 12) | (1 << 13)); #if defined(TARGET_PPC64) #if defined(TARGET_ABI32) env->msr &= ~((target_ulong)1 << MSR_SF); |