diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-08 18:35:02 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-08 18:35:02 +0000 |
commit | 48bbf11bcb6c5d95a281c025a13836c6fa699feb (patch) | |
tree | b7f1a6b6c6a71476322314323071b68cc4d4528d /cpu-exec.c | |
parent | Implement some Ultrasparc cache ASIs used by SILO (diff) | |
download | qemu-kvm-48bbf11bcb6c5d95a281c025a13836c6fa699feb.tar.gz qemu-kvm-48bbf11bcb6c5d95a281c025a13836c6fa699feb.tar.bz2 qemu-kvm-48bbf11bcb6c5d95a281c025a13836c6fa699feb.zip |
Fix r4641 (invalid token "=<" in a preprocessor expression)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4859 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cpu-exec.c')
-rw-r--r-- | cpu-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-exec.c b/cpu-exec.c index 8cc723d35..44a92ac33 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -1359,7 +1359,7 @@ int cpu_signal_handler(int host_signum, void *pinfo, 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; |