| 124 | |
| 125 | |
| 126 | static Instruction *getjumpcontrol (FuncState *fs, int pc) { |
| 127 | Instruction *pi = &fs->f->code[pc]; |
| 128 | if (pc >= 1 && testTMode(GET_OPCODE(*(pi-1)))) |
| 129 | return pi-1; |
| 130 | else |
| 131 | return pi; |
| 132 | } |
| 133 | |
| 134 | |
| 135 | /* |
no outgoing calls
no test coverage detected