| 3776 | |
| 3777 | |
| 3778 | static Instruction *getjumpcontrol (FuncState *fs, int pc) { |
| 3779 | Instruction *pi = &fs->f->code[pc]; |
| 3780 | if (pc >= 1 && testTMode(GET_OPCODE(*(pi-1)))) |
| 3781 | return pi-1; |
| 3782 | else |
| 3783 | return pi; |
| 3784 | } |
| 3785 | |
| 3786 | |
| 3787 | /* |
no outgoing calls
no test coverage detected