diff options
author | Mike Pall <mike> | 2010-04-26 00:28:44 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2010-04-26 00:28:44 +0200 |
commit | 28cfccf748adbadf959e7d654bd1c7a58bf9d150 (patch) | |
tree | 9a91518bcdd24f95ed3e9108e7ea0494a4eeb9b0 /src/lj_parse.c | |
parent | 41379126a2e41179068800f5ab791cc84f740228 (diff) | |
download | luajit-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.c | 2 |
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)) |