| 148 | |
| 149 | |
| 150 | static void patchlistaux (FuncState *fs, int list, int vtarget, int reg, |
| 151 | int dtarget) { |
| 152 | while (list != NO_JUMP) { |
| 153 | int next = getjump(fs, list); |
| 154 | if (patchtestreg(fs, list, reg)) |
| 155 | fixjump(fs, list, vtarget); |
| 156 | else |
| 157 | fixjump(fs, list, dtarget); /* jump to default target */ |
| 158 | list = next; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | |
| 163 | static void dischargejpc (FuncState *fs) { |
no test coverage detected