diff options
author | Thomas Monjalon <thomas@monjalon.net> | 2010-05-28 21:00:45 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-05-31 19:18:25 +0200 |
commit | 0f89cc7b6c33418f268126cc908b222e0d052f69 (patch) | |
tree | fabef8c365386e67a00765a945aeede9764f47b5 | |
parent | c3d420ead1aee9fcfd12be11cbdf6b1620134773 (diff) | |
download | qemu-0f89cc7b6c33418f268126cc908b222e0d052f69.tar.gz qemu-0f89cc7b6c33418f268126cc908b222e0d052f69.tar.bz2 qemu-0f89cc7b6c33418f268126cc908b222e0d052f69.zip |
target-ppc: remove useless line
This line was a bit clear.
The next lines set or reset this bit (LE) depending of another bit (ILE).
So the first line is useless.
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r-- | target-ppc/helper.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-ppc/helper.c b/target-ppc/helper.c index 4830dd9e7d..d342b09c8e 100644 --- a/target-ppc/helper.c +++ b/target-ppc/helper.c @@ -2593,7 +2593,6 @@ static inline void powerpc_excp(CPUState *env, int excp_model, int excp) #if 0 /* Fix this: not on all targets */ new_msr &= ~((target_ulong)1 << MSR_PMM); #endif - new_msr &= ~((target_ulong)1 << MSR_LE); if (msr_ile) new_msr |= (target_ulong)1 << MSR_LE; else |