** returns current `pc' and marks it as a jump target (to avoid wrong ** optimizations with consecutive instructions not in the same basic block). */
| 92 | ** optimizations with consecutive instructions not in the same basic block). |
| 93 | */ |
| 94 | int luaK_getlabel (FuncState *fs) { |
| 95 | fs->lasttarget = fs->pc; |
| 96 | return fs->pc; |
| 97 | } |
| 98 | |
| 99 | |
| 100 | static int getjump (FuncState *fs, int pc) { |
no outgoing calls
no test coverage detected