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