aboutsummaryrefslogtreecommitdiff
path: root/lopcodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'lopcodes.h')
-rw-r--r--lopcodes.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lopcodes.h b/lopcodes.h
index 886d31d1..f1d6a2e1 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.25 1999/02/09 18:01:55 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.26 1999/02/23 13:38:38 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*/
@@ -107,7 +107,9 @@ SETLINEW,/* w - - LINE=w */
107SETLINE,/* b - - LINE=b */ 107SETLINE,/* b - - LINE=b */
108 108
109LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */ 109LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */
110LONGARG /* b (add b*(1<<16) to arg of next instruction) */ 110LONGARG,/* b (add b*(1<<16) to arg of next instruction) */
111
112CHECKSTACK /* b (assert #temporaries == b; only for internal debuging!) */
111 113
112} OpCode; 114} OpCode;
113 115