From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KGI1q-0003eK-HQ for qemu-devel@nongnu.org; Tue, 08 Jul 2008 14:35:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KGI1q-0003e6-4h for qemu-devel@nongnu.org; Tue, 08 Jul 2008 14:35:06 -0400 Received: from [199.232.76.173] (port=37969 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KGI1p-0003e3-W6 for qemu-devel@nongnu.org; Tue, 08 Jul 2008 14:35:06 -0400 Received: from savannah.gnu.org ([199.232.41.3]:41160 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 1KGI1p-0007Hm-Jg for qemu-devel@nongnu.org; Tue, 08 Jul 2008 14:35:05 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KGI1o-0003w9-Tk for qemu-devel@nongnu.org; Tue, 08 Jul 2008 18:35:04 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KGI1o-0003w4-G3 for qemu-devel@nongnu.org; Tue, 08 Jul 2008 18:35:04 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Tue, 08 Jul 2008 18:35:04 +0000 Subject: [Qemu-devel] [4859] Fix r4641 (invalid token "=<" in a preprocessor expression) 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: 4859 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4859 Author: blueswir1 Date: 2008-07-08 18:35:02 +0000 (Tue, 08 Jul 2008) Log Message: ----------- Fix r4641 (invalid token "=<" in a preprocessor expression) Modified Paths: -------------- trunk/cpu-exec.c Modified: trunk/cpu-exec.c =================================================================== --- trunk/cpu-exec.c 2008-07-08 15:51:32 UTC (rev 4858) +++ trunk/cpu-exec.c 2008-07-08 18:35:02 UTC (rev 4859) @@ -1359,7 +1359,7 @@ unsigned long pc; int is_write; -#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ =< 3)) +#if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3)) pc = uc->uc_mcontext.gregs[R15]; #else pc = uc->uc_mcontext.arm_pc;