** Correct pointers to objects inside 'allgc' list when ** object 'o' is being removed from the list. */
| 1005 | ** object 'o' is being removed from the list. |
| 1006 | */ |
| 1007 | static void correctpointers (global_State *g, GCObject *o) { |
| 1008 | checkpointer(&g->survival, o); |
| 1009 | checkpointer(&g->old1, o); |
| 1010 | checkpointer(&g->reallyold, o); |
| 1011 | checkpointer(&g->firstold1, o); |
| 1012 | } |
| 1013 | |
| 1014 | |
| 1015 | /* |
no test coverage detected