guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] 26/437: fix i386 syntax error


From: Andy Wingo
Subject: [Guile-commits] 26/437: fix i386 syntax error
Date: Mon, 2 Jul 2018 05:13:38 -0400 (EDT)

wingo pushed a commit to branch lightning
in repository guile.

commit d94eae61b3eb9a8a7e9d409c3358f15ee94eb237
Author: Paolo Bonzini <address@hidden>
Date:   Tue Oct 17 06:18:05 2006 +0000

    fix i386 syntax error
    
    2006-10-16  Paolo Bonzini  <address@hidden>
    
        * lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-(
    
    git-archimport-id: address@hidden/lightning--stable--1.2--patch-28
---
 ChangeLog              | 4 ++++
 lightning/i386/funcs.h | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index c0da586..283ab3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-10-16  Paolo Bonzini  <address@hidden>
+
+       * lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-(
+
 2006-07-06  Paolo Bonzini  <address@hidden>
            Ludovic Courtes  <address@hidden>
 
diff --git a/lightning/i386/funcs.h b/lightning/i386/funcs.h
index ee26d46..4daaf48 100644
--- a/lightning/i386/funcs.h
+++ b/lightning/i386/funcs.h
@@ -74,7 +74,7 @@ jit_flush_code(void *dest, void *end)
 
   /* See if we can extend the previously mprotect'ed memory area towards
      higher addresses: the starting address remains the same as before.  */
-  else if (page >= prev_page && page <= prev_page + prev_length)
+  if (page >= prev_page && page <= prev_page + prev_length)
     prev_length = page + length - prev_page;
 
   /* See if we can extend the previously mprotect'ed memory area towards



reply via email to

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