| 3836 | |
| 3837 | |
| 3838 | void luaK_patchlist (FuncState *fs, int list, int target) { |
| 3839 | if (target == fs->pc) |
| 3840 | luaK_patchtohere(fs, list); |
| 3841 | else { |
| 3842 | lua_assert(target < fs->pc); |
| 3843 | patchlistaux(fs, list, target, NO_REG, target); |
| 3844 | } |
| 3845 | } |
| 3846 | |
| 3847 | |
| 3848 | void luaK_patchtohere (FuncState *fs, int list) { |
no test coverage detected