better error messages

This commit is contained in:
Roberto Ierusalimschy
2000-06-28 17:21:06 -03:00
parent b622282973
commit 014a09c509
10 changed files with 230 additions and 104 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lcode.h,v 1.13 2000/05/22 18:44:46 roberto Exp roberto $
** $Id: lcode.h,v 1.14 2000/06/16 17:51:40 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -22,9 +22,12 @@
enum Mode {iO, iU, iS, iAB}; /* instruction format */
#define VD 100 /* flag for variable delta */
extern const struct OpProperties {
char mode;
signed char delta;
unsigned char push;
unsigned char pop;
} luaK_opproperties[];