aboutsummaryrefslogtreecommitdiff
path: root/src/lj_parse.c
diff options
context:
space:
mode:
authorMike Pall <mike>2010-04-26 00:28:44 +0200
committerMike Pall <mike>2010-04-26 00:28:44 +0200
commit28cfccf748adbadf959e7d654bd1c7a58bf9d150 (patch)
tree9a91518bcdd24f95ed3e9108e7ea0494a4eeb9b0 /src/lj_parse.c
parent41379126a2e41179068800f5ab791cc84f740228 (diff)
downloadluajit-28cfccf748adbadf959e7d654bd1c7a58bf9d150.tar.gz
luajit-28cfccf748adbadf959e7d654bd1c7a58bf9d150.tar.bz2
luajit-28cfccf748adbadf959e7d654bd1c7a58bf9d150.zip
Turn TValue setter macros into inline functions.
Diffstat (limited to '')
-rw-r--r--src/lj_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_parse.c b/src/lj_parse.c
index c881aa91..b825c01f 100644
--- a/src/lj_parse.c
+++ b/src/lj_parse.c
@@ -188,7 +188,7 @@ static BCReg const_gc(FuncState *fs, GCobj *gc, uint32_t itype)
188{ 188{
189 lua_State *L = fs->L; 189 lua_State *L = fs->L;
190 TValue o, *val; 190 TValue o, *val;
191 setgcV(L, &o, &gc->gch, itype); 191 setgcV(L, &o, gc, itype);
192 /* NOBARRIER: the key is new or kept alive. */ 192 /* NOBARRIER: the key is new or kept alive. */
193 val = lj_tab_set(L, fs->kt, &o); 193 val = lj_tab_set(L, fs->kt, &o);
194 if (tvisnum(val)) 194 if (tvisnum(val))