Move a GC macro.

This commit is contained in:
Mike Pall
2012-10-02 09:57:49 +02:00
parent fcddd5a3a0
commit b66ab96a62
3 changed files with 5 additions and 5 deletions

View File

@@ -43,6 +43,7 @@ enum {
#define flipwhite(x) ((x)->gch.marked ^= LJ_GC_WHITES)
#define black2gray(x) ((x)->gch.marked &= (uint8_t)~LJ_GC_BLACK)
#define fixstring(s) ((s)->marked |= LJ_GC_FIXED)
#define markfinalized(x) ((x)->gch.marked |= LJ_GC_FINALIZED)
/* Collector. */
LJ_FUNC size_t lj_gc_separateudata(global_State *g, int all);