| 326 | } |
| 327 | |
| 328 | static int testobjref (global_State *g, GCObject *f, GCObject *t) { |
| 329 | int r1 = testobjref1(g, f, t); |
| 330 | if (!r1) { |
| 331 | printf("%d(%02X) - ", g->gcstate, g->currentwhite); |
| 332 | printobj(g, f); |
| 333 | printf(" -> "); |
| 334 | printobj(g, t); |
| 335 | printf("\n"); |
| 336 | } |
| 337 | return r1; |
| 338 | } |
| 339 | |
| 340 | |
| 341 | static void checkobjref (global_State *g, GCObject *f, GCObject *t) { |
no test coverage detected