(r int)
| 558 | } |
| 559 | |
| 560 | func (f *function) freeRegister(r int) { |
| 561 | if !isConstant(r) && r >= f.activeVariableCount { |
| 562 | f.freeRegisterCount-- |
| 563 | f.assertEqual(r, f.freeRegisterCount) |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | func (f *function) freeExpression(e exprDesc) { |
| 568 | if e.kind == kindNonRelocatable { |
no test coverage detected