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