** returns current 'pc' and marks it as a jump target (to avoid wrong ** optimizations with consecutive instructions not in the same basic block). */
| 229 | ** optimizations with consecutive instructions not in the same basic block). |
| 230 | */ |
| 231 | int luaK_getlabel (FuncState *fs) { |
| 232 | fs->lasttarget = fs->pc; |
| 233 | return fs->pc; |
| 234 | } |
| 235 | |
| 236 | |
| 237 | /* |
no outgoing calls
no test coverage detected