From 58badbab9933e0a50d9b9f3fec78ac50d15d5414 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 18 Mar 2002 11:49:46 -0300 Subject: special treatment for 'global in nil' --- lopcodes.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lopcodes.h') diff --git a/lopcodes.h b/lopcodes.h index 4568fe46..d6528220 100644 --- a/lopcodes.h +++ b/lopcodes.h @@ -1,5 +1,5 @@ /* -** $Id: lopcodes.h,v 1.89 2002/02/14 21:43:01 roberto Exp roberto $ +** $Id: lopcodes.h,v 1.90 2002/03/08 19:10:32 roberto Exp roberto $ ** Opcodes for Lua virtual machine ** See Copyright Notice in lua.h */ @@ -112,9 +112,10 @@ enum OpMode {iABC, iABc, iAsBc}; /* basic instruction format */ /* -** an invalid register that fits in 8 bits +** invalid registers that fits in 8 bits */ #define NO_REG MAXARG_A +#define NO_REG1 (NO_REG+1) /* -- cgit v1.2.3-55-g6feb