From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nr9nl-0006sC-9d for qemu-devel@nongnu.org; Mon, 15 Mar 2010 08:53:45 -0400 Received: from [199.232.76.173] (port=33252 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nr9nj-0006s4-UP for qemu-devel@nongnu.org; Mon, 15 Mar 2010 08:53:44 -0400 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nr9nj-0005yQ-Aq for qemu-devel@nongnu.org; Mon, 15 Mar 2010 08:53:43 -0400 Received: from mx20.gnu.org ([199.232.41.8]:34246) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Nr9nj-0005yM-3O for qemu-devel@nongnu.org; Mon, 15 Mar 2010 08:53:43 -0400 Received: from mail.codesourcery.com ([38.113.113.100]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nr9ni-000844-9k for qemu-devel@nongnu.org; Mon, 15 Mar 2010 08:53:42 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [PATCH] linux-user: fix running programs with iwmmxt instructions Date: Mon, 15 Mar 2010 12:53:25 +0000 References: <20100315123932.GB8895@firewall> In-Reply-To: <20100315123932.GB8895@firewall> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201003151253.25543.paul@codesourcery.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Lars Munch > +#if !defined(CONFIG_USER_ONLY) > if (arm_feature(env, ARM_FEATURE_XSCALE) > && ((env->cp15.c15_cpar ^ 0x3fff) & (1 << cpnum))) > return 1; > +#endif This is almost certainly the wrong way to fix this. Paul