From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KN3V1-0000cH-8t for qemu-devel@nongnu.org; Sun, 27 Jul 2008 06:29:11 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KN3Uz-0000bj-R6 for qemu-devel@nongnu.org; Sun, 27 Jul 2008 06:29:10 -0400 Received: from [199.232.76.173] (port=58822 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KN3Uz-0000bg-EV for qemu-devel@nongnu.org; Sun, 27 Jul 2008 06:29:09 -0400 Received: from savannah.gnu.org ([199.232.41.3]:60885 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 1KN3Uy-0000Xb-N9 for qemu-devel@nongnu.org; Sun, 27 Jul 2008 06:29:08 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KN3U8-0001Sx-G3 for qemu-devel@nongnu.org; Sun, 27 Jul 2008 10:28:16 +0000 Received: from malc by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KN3U8-0001St-62 for qemu-devel@nongnu.org; Sun, 27 Jul 2008 10:28:16 +0000 MIME-Version: 1.0 Errors-To: malc Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: malc Message-Id: Date: Sun, 27 Jul 2008 10:28:16 +0000 Subject: [Qemu-devel] [4954] Fix the opcode value of LWA 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: 4954 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4954 Author: malc Date: 2008-07-27 10:28:15 +0000 (Sun, 27 Jul 2008) Log Message: ----------- Fix the opcode value of LWA That should teach one to not blindly trust documentation that will (out of the blue) use decimal and binary representation for numbers in the same chart for no apparent reason and without any prefixes, sigh.. Unbreaks MIPS. Modified Paths: -------------- trunk/tcg/ppc64/tcg-target.c Modified: trunk/tcg/ppc64/tcg-target.c =================================================================== --- trunk/tcg/ppc64/tcg-target.c 2008-07-26 17:19:35 UTC (rev 4953) +++ trunk/tcg/ppc64/tcg-target.c 2008-07-27 10:28:15 UTC (rev 4954) @@ -268,7 +268,7 @@ #define LD XO58( 0) #define LDX XO31( 21) #define LDU XO58( 1) -#define LWA XO58( 10) +#define LWA XO58( 2) #define LWAX XO31(341) #define ADDI OPCD( 14)