diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-02-11 14:52:54 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-02-11 14:52:54 -0200 |
commit | 52aad0ab5937d4df6fe07aedbf9987f2f792698c (patch) | |
tree | 9598361f6d635751fe3eb93c66acd1520f2619af /lopcodes.h | |
parent | 74f1c3d025c6d8a714454470a953f383a1c6a641 (diff) | |
download | lua-52aad0ab5937d4df6fe07aedbf9987f2f792698c.tar.gz lua-52aad0ab5937d4df6fe07aedbf9987f2f792698c.tar.bz2 lua-52aad0ab5937d4df6fe07aedbf9987f2f792698c.zip |
removing implementation for better error messages (must rethink it...)
Diffstat (limited to 'lopcodes.h')
-rw-r--r-- | lopcodes.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lopcodes.h,v 1.37 2000/01/25 13:57:18 roberto Exp roberto $ | 2 | ** $Id: lopcodes.h,v 1.38 2000/01/28 16:53:00 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 | */ |
@@ -104,9 +104,6 @@ CLOSURE,/* b c v_c-v_1 closure(CNST[b], v_c-v_1) */ | |||
104 | SETLINEW,/* w - - LINE=w */ | 104 | SETLINEW,/* w - - LINE=w */ |
105 | SETLINE,/* b - - LINE=b */ | 105 | SETLINE,/* b - - LINE=b */ |
106 | 106 | ||
107 | SETNAMEW,/* w c - - NAME=CNST[w],c */ | ||
108 | SETNAME,/* b c - - NAME=CNST[b],c */ | ||
109 | |||
110 | LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ | 107 | LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ |
111 | LONGARG /* b (add b*(1<<16) to arg of next instruction) */ | 108 | LONGARG /* b (add b*(1<<16) to arg of next instruction) */ |
112 | 109 | ||