This commit is contained in:
Roberto Ierusalimschy
2000-03-15 17:50:33 -03:00
parent f0b697e01c
commit 3860c5934e
3 changed files with 5 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lcode.c,v 1.10 2000/03/10 18:37:44 roberto Exp roberto $
** $Id: lcode.c,v 1.11 2000/03/13 20:37:16 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
@@ -37,7 +37,7 @@ static Instruction *previous_instruction (FuncState *fs) {
}
int luaK_primitivecode (FuncState *fs, Instruction i) {
static int luaK_primitivecode (FuncState *fs, Instruction i) {
luaM_growvector(fs->L, fs->f->code, fs->pc, 1, Instruction, codeEM, MAXARG_S);
fs->f->code[fs->pc] = i;
return fs->pc++;