summaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-11 14:52:54 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-02-11 14:52:54 -0200
commit52aad0ab5937d4df6fe07aedbf9987f2f792698c (patch)
tree9598361f6d635751fe3eb93c66acd1520f2619af /lopcodes.h
parent74f1c3d025c6d8a714454470a953f383a1c6a641 (diff)
downloadlua-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.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/lopcodes.h b/lopcodes.h
index c1ab4092..6da468f5 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -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) */
104SETLINEW,/* w - - LINE=w */ 104SETLINEW,/* w - - LINE=w */
105SETLINE,/* b - - LINE=b */ 105SETLINE,/* b - - LINE=b */
106 106
107SETNAMEW,/* w c - - NAME=CNST[w],c */
108SETNAME,/* b c - - NAME=CNST[b],c */
109
110LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ 107LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */
111LONGARG /* b (add b*(1<<16) to arg of next instruction) */ 108LONGARG /* b (add b*(1<<16) to arg of next instruction) */
112 109