(e exprDesc)
| 565 | } |
| 566 | |
| 567 | func (f *function) freeExpression(e exprDesc) { |
| 568 | if e.kind == kindNonRelocatable { |
| 569 | f.freeRegister(e.info) |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | func (f *function) stringConstant(s string) int { return f.addConstant(s, s) } |
| 574 | func (f *function) booleanConstant(b bool) int { return f.addConstant(b, b) } |
no test coverage detected