projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3d420e
)
target-ppc: remove useless line
author
Thomas Monjalon
<thomas@monjalon.net>
Fri, 28 May 2010 19:00:45 +0000
(21:00 +0200)
committer
Aurelien Jarno
<aurelien@aurel32.net>
Mon, 31 May 2010 17:18:25 +0000
(19:18 +0200)
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>
target-ppc/helper.c
patch
|
blob
|
history
diff --git
a/target-ppc/helper.c
b/target-ppc/helper.c
index 4830dd9e7da7f8073b1485533b01e419e0a8a64f..d342b09c8e21dd2fa92535cd6a46c806358404f2 100644
(file)
--- 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