wingo pushed a commit to branch lightning
in repository guile.

commit d94eae61b3eb9a8a7e9d409c3358f15ee94eb237
Author: Paolo Bonzini <[email protected]>
Date:   Tue Oct 17 06:18:05 2006 +0000

    fix i386 syntax error
    
    2006-10-16  Paolo Bonzini  <[email protected]>
    
        * lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-(
    
    git-archimport-id: [email protected]/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  <[email protected]>
+
+       * lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-(
+
 2006-07-06  Paolo Bonzini  <[email protected]>
            Ludovic Courtes  <[email protected]>
 
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