summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-18 11:49:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-03-18 11:49:46 -0300
commit58badbab9933e0a50d9b9f3fec78ac50d15d5414 (patch)
tree61b07a66b33f0ac201af0376c65694d651d7496d /lopcodes.h
parentda81845cd5924627a3c00fca6bec683144493cbe (diff)
downloadlua-58badbab9933e0a50d9b9f3fec78ac50d15d5414.tar.gz
lua-58badbab9933e0a50d9b9f3fec78ac50d15d5414.tar.bz2
lua-58badbab9933e0a50d9b9f3fec78ac50d15d5414.zip
special treatment for 'global in nil'
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 4568fe46..d6528220 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.89 2002/02/14 21:43:01 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.90 2002/03/08 19:10:32 roberto Exp roberto $
3** Opcodes for Lua virtual machine 3** Opcodes for Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -112,9 +112,10 @@ enum OpMode {iABC, iABc, iAsBc}; /* basic instruction format */
112 112
113 113
114/* 114/*
115** an invalid register that fits in 8 bits 115** invalid registers that fits in 8 bits
116*/ 116*/
117#define NO_REG MAXARG_A 117#define NO_REG MAXARG_A
118#define NO_REG1 (NO_REG+1)
118 119
119 120
120/* 121/*