** Traverse a list of tests ensuring no one produces a value */
| 218 | ** Traverse a list of tests ensuring no one produces a value |
| 219 | */ |
| 220 | static void removevalues (FuncState *fs, int list) { |
| 221 | for (; list != NO_JUMP; list = getjump(fs, list)) |
| 222 | patchtestreg(fs, list, NO_REG); |
| 223 | } |
| 224 | |
| 225 | |
| 226 | /* |
no test coverage detected