aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lopcodes.h3
-rw-r--r--lvm.c7
2 files changed, 6 insertions, 4 deletions
diff --git a/lopcodes.h b/lopcodes.h
index fabeeb0e..886d31d1 100644
--- a/lopcodes.h
+++ b/lopcodes.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lopcodes.h,v 1.24 1999/02/09 15:58:45 roberto Exp roberto $ 2** $Id: lopcodes.h,v 1.25 1999/02/09 18:01:55 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*/
@@ -106,6 +106,7 @@ CALLFUNC,/* b c v_c...v_1 f r_b...r_1 f(v1,...,v_c) */
106SETLINEW,/* w - - LINE=w */ 106SETLINEW,/* w - - LINE=w */
107SETLINE,/* b - - LINE=b */ 107SETLINE,/* b - - LINE=b */
108 108
109LONGARGW,/* w (add w*(1<<16) to arg of next instruction) */
109LONGARG /* b (add b*(1<<16) to arg of next instruction) */ 110LONGARG /* b (add b*(1<<16) to arg of next instruction) */
110 111
111} OpCode; 112} OpCode;
diff --git a/lvm.c b/lvm.c
index f9175885..5eee2799 100644
--- a/lvm.c
+++ b/lvm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lvm.c,v 1.48 1999/02/09 15:58:45 roberto Exp roberto $ 2** $Id: lvm.c,v 1.49 1999/02/09 18:01:55 roberto Exp roberto $
3** Lua virtual machine 3** Lua virtual machine
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -638,8 +638,9 @@ StkId luaV_execute (Closure *cl, TProtoFunc *tf, StkId base) {
638 luaD_lineHook(aux); 638 luaD_lineHook(aux);
639 break; 639 break;
640 640
641 case LONGARG: 641 case LONGARGW: aux += highbyte(*pc++);
642 aux = highbyte(highbyte(*pc++)); 642 case LONGARG: aux += *pc++;
643 aux = highbyte(highbyte(aux));
643 goto switchentry; /* do not reset "aux" */ 644 goto switchentry; /* do not reset "aux" */
644 645
645 } 646 }