aboutsummaryrefslogtreecommitdiff
path: root/lcode.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-07-27 13:32:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-07-27 13:32:59 -0300
commit0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b (patch)
tree0ac634fed90877130b1f102bf4075af999de2158 /lcode.h
parent15231d4fb2f6984b25e0353ff46eda1a180b686d (diff)
downloadlua-0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b.tar.gz
lua-0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b.tar.bz2
lua-0acd55898d0aaae8dbc14c8a1bc1e3bdffc8701b.zip
Added gcc option '-Wconversion'
No warnings for standard numerical types. Still pending alternative numerical types.
Diffstat (limited to 'lcode.h')
-rw-r--r--lcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcode.h b/lcode.h
index c1f16da0..414ebe39 100644
--- a/lcode.h
+++ b/lcode.h
@@ -60,7 +60,7 @@ typedef enum UnOpr { OPR_MINUS, OPR_BNOT, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr;
60#define luaK_jumpto(fs,t) luaK_patchlist(fs, luaK_jump(fs), t) 60#define luaK_jumpto(fs,t) luaK_patchlist(fs, luaK_jump(fs), t)
61 61
62LUAI_FUNC int luaK_code (FuncState *fs, Instruction i); 62LUAI_FUNC int luaK_code (FuncState *fs, Instruction i);
63LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, unsigned Bx); 63LUAI_FUNC int luaK_codeABx (FuncState *fs, OpCode o, int A, int Bx);
64LUAI_FUNC int luaK_codeABCk (FuncState *fs, OpCode o, int A, int B, int C, 64LUAI_FUNC int luaK_codeABCk (FuncState *fs, OpCode o, int A, int B, int C,
65 int k); 65 int k);
66LUAI_FUNC int luaK_codevABCk (FuncState *fs, OpCode o, int A, int B, int C, 66LUAI_FUNC int luaK_codevABCk (FuncState *fs, OpCode o, int A, int B, int C,