** Traverse a list of tests ensuring no one produces a value */
| 277 | ** Traverse a list of tests ensuring no one produces a value |
| 278 | */ |
| 279 | static void removevalues (FuncState *fs, int list) { |
| 280 | for (; list != NO_JUMP; list = getjump(fs, list)) |
| 281 | patchtestreg(fs, list, NO_REG); |
| 282 | } |
| 283 | |
| 284 | |
| 285 | /* |
no test coverage detected