aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lcode.c b/lcode.c
index 2a47daee..10b8c500 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.c,v 1.42 2000/08/04 19:38:35 roberto Exp roberto $ 2** $Id: lcode.c,v 1.43 2000/08/08 18:26:05 roberto Exp roberto $
3** Code generator for Lua 3** Code generator for Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -631,8 +631,7 @@ int luaK_code2 (FuncState *fs, OpCode o, int arg1, int arg2) {
631 case iS: i = CREATE_S(o, arg1); break; 631 case iS: i = CREATE_S(o, arg1); break;
632 case iAB: i = CREATE_AB(o, arg1, arg2); break; 632 case iAB: i = CREATE_AB(o, arg1, arg2); break;
633 } 633 }
634 if (fs->debug) 634 codelineinfo(fs);
635 codelineinfo(fs);
636 /* put new instruction in code array */ 635 /* put new instruction in code array */
637 luaM_growvector(fs->L, fs->f->code, fs->pc, 1, Instruction, 636 luaM_growvector(fs->L, fs->f->code, fs->pc, 1, Instruction,
638 "code size overflow", MAX_INT); 637 "code size overflow", MAX_INT);