1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 20:30:28 +02:00

fix i386 syntax error

2006-10-16  Paolo Bonzini  <bonzini@gnu.org>

	* lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-(

git-archimport-id: bonzini@gnu.org--2004b/lightning--stable--1.2--patch-28
This commit is contained in:
Paolo Bonzini 2006-10-17 06:18:05 +00:00
parent 65f45278de
commit d94eae61b3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-10-16 Paolo Bonzini <bonzini@gnu.org>
* lightning/i386/i386.h (jit_flush_code): Fix syntax error. :-(
2006-07-06 Paolo Bonzini <bonzini@gnu.org>
Ludovic Courtes <ludovic.courtes@laas.fr>

View file

@ -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