** Traverse a list of tests ensuring no one produces a value */
| 211 | ** Traverse a list of tests ensuring no one produces a value |
| 212 | */ |
| 213 | static void removevalues (FuncState *fs, int list) { |
| 214 | for (; list != NO_JUMP; list = getjump(fs, list)) |
| 215 | patchtestreg(fs, list, NO_REG); |
| 216 | } |
| 217 | |
| 218 | |
| 219 | /* |
no test coverage detected