** Path all jumps in 'list' to jump to 'target'. ** (The assert means that we cannot fix a jump to a forward address ** because we only know addresses once code is generated.) */
| 303 | ** because we only know addresses once code is generated.) |
| 304 | */ |
| 305 | void luaK_patchlist (FuncState *fs, int list, int target) { |
| 306 | lua_assert(target <= fs->pc); |
| 307 | patchlistaux(fs, list, target, NO_REG, target); |
| 308 | } |
| 309 | |
| 310 | |
| 311 | void luaK_patchtohere (FuncState *fs, int list) { |