From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LBhV1-000574-6B for qemu-devel@nongnu.org; Sat, 13 Dec 2008 22:18:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LBhUz-00056r-6a for qemu-devel@nongnu.org; Sat, 13 Dec 2008 22:18:29 -0500 Received: from [199.232.76.173] (port=58717 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LBhUz-00056o-1L for qemu-devel@nongnu.org; Sat, 13 Dec 2008 22:18:29 -0500 Received: from mx20.gnu.org ([199.232.41.8]:7332) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LBhUy-00056j-Sl for qemu-devel@nongnu.org; Sat, 13 Dec 2008 22:18:28 -0500 Received: from mail.codesourcery.com ([65.74.133.4]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LBhUx-00049M-Ur for qemu-devel@nongnu.org; Sat, 13 Dec 2008 22:18:28 -0500 Date: Sat, 13 Dec 2008 19:18:27 -0800 From: Nathan Froyd Message-ID: <20081214031827.GF23471@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] [PATCH] target-ppc: fix mbar opcode 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 Self-explanatory, really. Signed-off-by: Nathan Froyd --- target-ppc/translate.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/target-ppc/translate.c b/target-ppc/translate.c index cabebc0..e2d6f42 100644 --- a/target-ppc/translate.c +++ b/target-ppc/translate.c @@ -6049,7 +6049,7 @@ GEN_HANDLER(dlmzb, 0x1F, 0x0E, 0x02, 0x00000000, PPC_440_SPEC) } /* mbar replaces eieio on 440 */ -GEN_HANDLER(mbar, 0x1F, 0x16, 0x13, 0x001FF801, PPC_BOOKE) +GEN_HANDLER(mbar, 0x1F, 0x16, 0x1a, 0x001FF801, PPC_BOOKE) { /* interpreted as no-op */ } -- 1.6.0.5