changeset 224:2e5a32d56e60

Fixed error with fix for bad operands
author lost
date Thu, 11 Jun 2009 23:12:31 +0000
parents 436b36214e35
children 058f18119025
files ChangeLog configure.ac lwasm/insn_inh.c
diffstat 3 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon May 11 06:09:49 2009 +0000
+++ b/ChangeLog	Thu Jun 11 23:12:31 2009 +0000
@@ -11,6 +11,10 @@
 
 Also, the software affected may follow in [].
 
+Version 2.5
+
+[!] Fixed error in the fix for invalid operands included in 2.4 [LWASM]
+
 Version 2.4
 
 [!] Fixed off by one relocation offest for base page external references
--- a/configure.ac	Mon May 11 06:09:49 2009 +0000
+++ b/configure.ac	Thu Jun 11 23:12:31 2009 +0000
@@ -1,4 +1,4 @@
-AC_INIT([LWTOOLS], [2.3], [lost@l-w.ca])
+AC_INIT([LWTOOLS], [2.5-pre], [lost@l-w.ca])
 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
 AC_PROG_CC
 gl_EARLY
--- a/lwasm/insn_inh.c	Mon May 11 06:09:49 2009 +0000
+++ b/lwasm/insn_inh.c	Thu Jun 11 23:12:31 2009 +0000
@@ -31,4 +31,7 @@
 OPFUNC(insn_inh)
 {
 	lwasm_emitop(as, l, instab[opnum].ops[0]);
+	// skip to end of line
+	for (; **p; (*p)++)
+		/* do nothing */ ;
 }