summaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lcode.h b/lcode.h
index ba1d282b..35a7d17a 100644
--- a/lcode.h
+++ b/lcode.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lcode.h,v 1.34 2002/05/10 17:02:32 roberto Exp roberto $ 2** $Id: lcode.h,v 1.35 2002/05/10 19:22:11 roberto Exp $
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*/
@@ -44,6 +44,7 @@ typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_NOUNOPR } UnOpr;
44int luaK_code (FuncState *fs, Instruction i, int line); 44int luaK_code (FuncState *fs, Instruction i, int line);
45int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx); 45int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned int Bx);
46int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C); 46int luaK_codeABC (FuncState *fs, OpCode o, int A, int B, int C);
47void luaK_fixline (FuncState *fs, int line);
47void luaK_nil (FuncState *fs, int from, int n); 48void luaK_nil (FuncState *fs, int from, int n);
48void luaK_reserveregs (FuncState *fs, int n); 49void luaK_reserveregs (FuncState *fs, int n);
49int luaK_stringK (FuncState *fs, TString *s); 50int luaK_stringK (FuncState *fs, TString *s);