From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DZvvb-0001Ba-3y for qemu-devel@nongnu.org; Sun, 22 May 2005 15:15:59 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DZvvZ-0001AP-OW for qemu-devel@nongnu.org; Sun, 22 May 2005 15:15:58 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DZvvZ-00018z-H2 for qemu-devel@nongnu.org; Sun, 22 May 2005 15:15:57 -0400 Received: from [194.251.242.243] (helo=fep18.inet.fi) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DZvwq-0006td-KX for qemu-devel@nongnu.org; Sun, 22 May 2005 15:17:17 -0400 Received: from co.inet.fi ([80.220.124.133]) by fep18.inet.fi with ESMTP id <20050522190759.JOBV16444.fep18.inet.fi@co.inet.fi> for ; Sun, 22 May 2005 22:07:59 +0300 Message-ID: <4290D88C.5020004@co.inet.fi> Date: Sun, 22 May 2005 22:07:56 +0300 From: Tero Kaarlela MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] There is a bug in ppc_prep.c? 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 Hi, I just browsed CVS repository and found following from ppc_prep.c: /* Check LE mode */ if (val & 0x02) { printf("Little Endian mode isn't supported (yet ?)\n"); abort(); shouldnt this be ie: /* Check LE mode */ if (val & 0x02) { printf("Switching to Little Endian mode..."); /* abort(); */ ? Tero Kaarlela