** returns current `pc' and marks it as a jump target (to avoid wrong ** optimizations with consecutive instructions not in the same basic block). */
| 3761 | ** optimizations with consecutive instructions not in the same basic block). |
| 3762 | */ |
| 3763 | int luaK_getlabel (FuncState *fs) { |
| 3764 | fs->lasttarget = fs->pc; |
| 3765 | return fs->pc; |
| 3766 | } |
| 3767 | |
| 3768 | |
| 3769 | static int getjump (FuncState *fs, int pc) { |
no outgoing calls
no test coverage detected