** Correct pointers to objects inside 'allgc' list when ** object 'o' is being removed from the list. */
| 1054 | ** object 'o' is being removed from the list. |
| 1055 | */ |
| 1056 | static void correctpointers (global_State *g, GCObject *o) { |
| 1057 | checkpointer(&g->survival, o); |
| 1058 | checkpointer(&g->old1, o); |
| 1059 | checkpointer(&g->reallyold, o); |
| 1060 | checkpointer(&g->firstold1, o); |
| 1061 | } |
| 1062 | |
| 1063 | |
| 1064 | /* |
no test coverage detected