** Correct pointers to objects inside 'allgc' list when ** object 'o' is being removed from the list. */
| 997 | ** object 'o' is being removed from the list. |
| 998 | */ |
| 999 | static void correctpointers (global_State *g, GCObject *o) { |
| 1000 | checkpointer(&g->survival, o); |
| 1001 | checkpointer(&g->old1, o); |
| 1002 | checkpointer(&g->reallyold, o); |
| 1003 | checkpointer(&g->firstold1, o); |
| 1004 | } |
| 1005 | |
| 1006 | |
| 1007 | /* |
no test coverage detected