diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-25 14:47:14 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-25 14:47:14 -0300 |
commit | 801aaf37b14a1fad5bb49c9a4200d25680152471 (patch) | |
tree | e3cc5cdebac6d503091f4ba16444f8ecfa8dfdb2 /lopcodes.h | |
parent | 00af2faae71e6388ee61ef18b2c5902a42e9bc27 (diff) | |
download | lua-801aaf37b14a1fad5bb49c9a4200d25680152471.tar.gz lua-801aaf37b14a1fad5bb49c9a4200d25680152471.tar.bz2 lua-801aaf37b14a1fad5bb49c9a4200d25680152471.zip |
simpler implementation for line information
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.91 2002/03/18 14:49:46 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.92 2002/03/21 20:32:22 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 | */ |
@@ -207,8 +207,7 @@ enum OpModeMask { | |||
207 | OpModeCreg, /* C is a register/constant */ | 207 | OpModeCreg, /* C is a register/constant */ |
208 | OpModesetA, /* instruction set register A */ | 208 | OpModesetA, /* instruction set register A */ |
209 | OpModeK, /* Bc is a constant */ | 209 | OpModeK, /* Bc is a constant */ |
210 | OpModeT, /* operator is a test */ | 210 | OpModeT /* operator is a test */ |
211 | OpModeNoTrace /* operator should not be traced */ | ||
212 | }; | 211 | }; |
213 | 212 | ||
214 | extern const lu_byte luaP_opmodes[NUM_OPCODES]; | 213 | extern const lu_byte luaP_opmodes[NUM_OPCODES]; |