From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KnHhe-0007yA-Ji for qemu-devel@nongnu.org; Tue, 07 Oct 2008 14:54:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KnHhe-0007xU-9N for qemu-devel@nongnu.org; Tue, 07 Oct 2008 14:54:38 -0400 Received: from [199.232.76.173] (port=36935 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KnHhd-0007xH-Vs for qemu-devel@nongnu.org; Tue, 07 Oct 2008 14:54:38 -0400 Received: from savannah.gnu.org ([199.232.41.3]:43618 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KnHhd-0008SZ-Jl for qemu-devel@nongnu.org; Tue, 07 Oct 2008 14:54:37 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KnHhc-0003nH-Qu for qemu-devel@nongnu.org; Tue, 07 Oct 2008 18:54:36 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KnHhc-0003nD-IY for qemu-devel@nongnu.org; Tue, 07 Oct 2008 18:54:36 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Tue, 07 Oct 2008 18:54:36 +0000 Subject: [Qemu-devel] [5438] Fix error in fexpand (spotted by sparse) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org 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; }