From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Jt8DR-0007RJ-3a for qemu-devel@nongnu.org; Mon, 05 May 2008 17:27:21 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Jt8DQ-0007Qc-J9 for qemu-devel@nongnu.org; Mon, 05 May 2008 17:27:20 -0400 Received: from [199.232.76.173] (port=54315 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jt8DQ-0007QT-8M for qemu-devel@nongnu.org; Mon, 05 May 2008 17:27:20 -0400 Received: from savannah.gnu.org ([199.232.41.3] 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 1Jt8DP-0001TI-TP for qemu-devel@nongnu.org; Mon, 05 May 2008 17:27:20 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1Jt8DP-0007Wy-8g for qemu-devel@nongnu.org; Mon, 05 May 2008 21:27:19 +0000 Received: from aurel32 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1Jt8DO-0007Wu-Vb for qemu-devel@nongnu.org; Mon, 05 May 2008 21:27:19 +0000 MIME-Version: 1.0 Errors-To: aurel32 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Aurelien Jarno Message-Id: Date: Mon, 05 May 2008 21:27:18 +0000 Subject: [Qemu-devel] [4345] PPC: fix isel opcode decoding 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: 4345 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4345 Author: aurel32 Date: 2008-05-05 21:27:18 +0000 (Mon, 05 May 2008) Log Message: ----------- PPC: fix isel opcode decoding (Tristan Gingold) Modified Paths: -------------- trunk/target-ppc/translate.c Modified: trunk/target-ppc/translate.c =================================================================== --- trunk/target-ppc/translate.c 2008-05-05 21:27:10 UTC (rev 4344) +++ trunk/target-ppc/translate.c 2008-05-05 21:27:18 UTC (rev 4345) @@ -1119,7 +1119,7 @@ } /* isel (PowerPC 2.03 specification) */ -GEN_HANDLER(isel, 0x1F, 0x0F, 0x00, 0x00000001, PPC_ISEL) +GEN_HANDLER(isel, 0x1F, 0x0F, 0xFF, 0x00000001, PPC_ISEL) { uint32_t bi = rC(ctx->opcode); uint32_t mask;