** returns current 'pc' and marks it as a jump target (to avoid wrong ** optimizations with consecutive instructions not in the same basic block). */
| 109 | ** optimizations with consecutive instructions not in the same basic block). |
| 110 | */ |
| 111 | int luaK_getlabel (FuncState *fs) { |
| 112 | fs->lasttarget = fs->pc; |
| 113 | return fs->pc; |
| 114 | } |
| 115 | |
| 116 | |
| 117 | static int getjump (FuncState *fs, int pc) { |
no outgoing calls
no test coverage detected