| 115 | |
| 116 | |
| 117 | static int getjump (FuncState *fs, int pc) { |
| 118 | int offset = GETARG_sBx(fs->f->code[pc]); |
| 119 | if (offset == NO_JUMP) /* point to itself represents end of list */ |
| 120 | return NO_JUMP; /* end of list */ |
| 121 | else |
| 122 | return (pc+1)+offset; /* turn offset into absolute position */ |
| 123 | } |
| 124 | |
| 125 | |
| 126 | static Instruction *getjumpcontrol (FuncState *fs, int pc) { |
no outgoing calls
no test coverage detected