** returns current 'pc' and marks it as a jump target (to avoid wrong ** optimizations with consecutive instructions not in the same basic block). */
| 173 | ** optimizations with consecutive instructions not in the same basic block). |
| 174 | */ |
| 175 | int luaK_getlabel (FuncState *fs) { |
| 176 | fs->lasttarget = fs->pc; |
| 177 | return fs->pc; |
| 178 | } |
| 179 | |
| 180 | |
| 181 | /* |
no outgoing calls
no test coverage detected