** check whether list has any jump that do not produce a value ** or produce an inverted value */
| 664 | ** or produce an inverted value |
| 665 | */ |
| 666 | static int need_value (FuncState *fs, int list) { |
| 667 | for (; list != NO_JUMP; list = getjump(fs, list)) { |
| 668 | Instruction i = *getjumpcontrol(fs, list); |
| 669 | if (GET_OPCODE(i) != OP_TESTSET) return 1; |
| 670 | } |
| 671 | return 0; /* not found */ |
| 672 | } |
| 673 | |
| 674 | |
| 675 | /* |
no test coverage detected