qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4859] Fix r4641 (invalid token "=<" in a preprocessor expr


From: Blue Swirl
Subject: [Qemu-devel] [4859] Fix r4641 (invalid token "=<" in a preprocessor expression)
Date: Tue, 08 Jul 2008 18:35:04 +0000

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;






reply via email to

[Prev in Thread] Current Thread [Next in Thread]