* [Qemu-devel] [5438] Fix error in fexpand (spotted by sparse)
@ 2008-10-07 18:54 Blue Swirl
0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2008-10-07 18:54 UTC (permalink / raw)
To: qemu-devel
Revision: 5438
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5438
Author: blueswir1
Date: 2008-10-07 18:54:35 +0000 (Tue, 07 Oct 2008)
Log Message:
-----------
Fix error in fexpand (spotted by sparse)
Modified Paths:
--------------
trunk/target-sparc/op_helper.c
Modified: trunk/target-sparc/op_helper.c
===================================================================
--- trunk/target-sparc/op_helper.c 2008-10-06 20:21:51 UTC (rev 5437)
+++ trunk/target-sparc/op_helper.c 2008-10-07 18:54:35 UTC (rev 5438)
@@ -450,10 +450,10 @@
s.l = (uint32_t)(*(uint64_t *)&DT0 & 0xffffffff);
d.d = DT1;
- d.VIS_L64(0) = s.VIS_W32(0) << 4;
- d.VIS_L64(1) = s.VIS_W32(1) << 4;
- d.VIS_L64(2) = s.VIS_W32(2) << 4;
- d.VIS_L64(3) = s.VIS_W32(3) << 4;
+ d.VIS_W64(0) = s.VIS_B32(0) << 4;
+ d.VIS_W64(1) = s.VIS_B32(1) << 4;
+ d.VIS_W64(2) = s.VIS_B32(2) << 4;
+ d.VIS_W64(3) = s.VIS_B32(3) << 4;
DT0 = d.d;
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-10-07 18:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-07 18:54 [Qemu-devel] [5438] Fix error in fexpand (spotted by sparse) Blue Swirl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).