(n int)
| 553 | } |
| 554 | |
| 555 | func (f *function) ReserveRegisters(n int) { |
| 556 | f.CheckStack(n) |
| 557 | f.freeRegisterCount += n |
| 558 | } |
| 559 | |
| 560 | func (f *function) freeRegister(r int) { |
| 561 | if !isConstant(r) && r >= f.activeVariableCount { |
no test coverage detected