| 98 | |
| 99 | |
| 100 | static int getjump (FuncState *fs, int pc) { |
| 101 | int offset = GETARG_sBx(fs->f->code[pc]); |
| 102 | if (offset == NO_JUMP) /* point to itself represents end of list */ |
| 103 | return NO_JUMP; /* end of list */ |
| 104 | else |
| 105 | return (pc+1)+offset; /* turn offset into absolute position */ |
| 106 | } |
| 107 | |
| 108 | |
| 109 | static Instruction *getjumpcontrol (FuncState *fs, int pc) { |
no outgoing calls
no test coverage detected