(pc int)
| 767 | } |
| 768 | |
| 769 | func (f *function) invertJump(pc int) { |
| 770 | i := f.jumpControl(pc) |
| 771 | f.p.l.assert(testTMode(i.opCode()) && i.opCode() != opTestSet && i.opCode() != opTest) |
| 772 | i.setA(not(i.a())) |
| 773 | } |
| 774 | |
| 775 | func (f *function) jumpOnCondition(e exprDesc, cond int) int { |
| 776 | if e.kind == kindRelocatable { |