String returns the LLVM syntax representation of the instruction as a type-value pair.
()
| 105 | // String returns the LLVM syntax representation of the instruction as a |
| 106 | // type-value pair. |
| 107 | func (inst *InstFAdd) String() string { |
| 108 | return fmt.Sprintf("%s %s", inst.Type(), inst.Ident()) |
| 109 | } |
| 110 | |
| 111 | // Type returns the type of the instruction. |
| 112 | func (inst *InstFAdd) Type() types.Type { |