projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9b9e439
)
Do not sign extend lwu, by Aurelien Jarno.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 28 May 2007 17:09:41 +0000
(17:09 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 28 May 2007 17:09:41 +0000
(17:09 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2889
c046a42c
-6fe2-441c-8c8c-
71466251a162
target-mips/op_mem.c
patch
|
blob
|
history
diff --git
a/target-mips/op_mem.c
b/target-mips/op_mem.c
index f9fc69c8e3222c1037f036599881292bfb52aeaa..602c071c5b10307fc6ebda4d9274750de3974bde 100644
(file)
--- a/
target-mips/op_mem.c
+++ b/
target-mips/op_mem.c
@@
-63,7
+63,7
@@
void glue(op_lw, MEMSUFFIX) (void)
void glue(op_lwu, MEMSUFFIX) (void)
{
- T0 = glue(ldl, MEMSUFFIX)(T0);
+ T0 =
(uint32_t)
glue(ldl, MEMSUFFIX)(T0);
RETURN();
}