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