| 105 | |
| 106 | |
| 107 | static Instruction *getjumpcontrol (FuncState *fs, int pc) { |
| 108 | Instruction *pi = &fs->f->code[pc]; |
| 109 | if (pc >= 1 && testTMode(GET_OPCODE(*(pi-1)))) |
| 110 | return pi-1; |
| 111 | else |
| 112 | return pi; |
| 113 | } |
| 114 | |
| 115 | |
| 116 | /* |
no outgoing calls
no test coverage detected