()
| 481 | } |
| 482 | |
| 483 | func (f *function) dischargeJumpPC() { |
| 484 | f.assert(f.isJumpListWalkable(f.jumpPC)) |
| 485 | f.patchListHelper(f.jumpPC, len(f.f.code), noRegister, len(f.f.code)) |
| 486 | f.jumpPC = noJump |
| 487 | } |
| 488 | |
| 489 | func (f *function) PatchList(list, target int) { |
| 490 | if target == len(f.f.code) { |
no test coverage detected