** returns current 'pc' and marks it as a jump target (to avoid wrong ** optimizations with consecutive instructions not in the same basic block). */
| 166 | ** optimizations with consecutive instructions not in the same basic block). |
| 167 | */ |
| 168 | int luaK_getlabel (FuncState *fs) { |
| 169 | fs->lasttarget = fs->pc; |
| 170 | return fs->pc; |
| 171 | } |
| 172 | |
| 173 | |
| 174 | /* |
no outgoing calls
no test coverage detected