diff options
-rw-r--r-- | ltests.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.96 2010/04/19 16:38:25 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.97 2010/04/29 17:33:51 roberto Exp roberto $ |
3 | ** Internal Module for Debugging of the Lua Implementation | 3 | ** Internal Module for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -367,8 +367,6 @@ static void checkgraylist (GCObject *l) { | |||
367 | while (l) { | 367 | while (l) { |
368 | lua_assert(isgray(l)); | 368 | lua_assert(isgray(l)); |
369 | lua_assert(!testbit(l->gch.marked, GRAYBIT)); | 369 | lua_assert(!testbit(l->gch.marked, GRAYBIT)); |
370 | //if (testbit(l->gch.marked, GRAYBIT)) | ||
371 | // printf("%s (%02x) %p\n", ttypename(l->gch.tt), l->gch.marked, l); | ||
372 | l->gch.marked = l_setbit(l->gch.marked, GRAYBIT); | 370 | l->gch.marked = l_setbit(l->gch.marked, GRAYBIT); |
373 | switch (gch(l)->tt) { | 371 | switch (gch(l)->tt) { |
374 | case LUA_TTABLE: l = gco2t(l)->gclist; break; | 372 | case LUA_TTABLE: l = gco2t(l)->gclist; break; |