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