| 3767 | |
| 3768 | |
| 3769 | static int getjump (FuncState *fs, int pc) { |
| 3770 | int offset = GETARG_sBx(fs->f->code[pc]); |
| 3771 | if (offset == NO_JUMP) /* point to itself represents end of list */ |
| 3772 | return NO_JUMP; /* end of list */ |
| 3773 | else |
| 3774 | return (pc+1)+offset; /* turn offset into absolute position */ |
| 3775 | } |
| 3776 | |
| 3777 | |
| 3778 | static Instruction *getjumpcontrol (FuncState *fs, int pc) { |
no outgoing calls
no test coverage detected