String returns the LLVM syntax representation of the instruction as a type-value pair.
()
| 41 | // String returns the LLVM syntax representation of the instruction as a |
| 42 | // type-value pair. |
| 43 | func (inst *InstAdd) String() string { |
| 44 | return fmt.Sprintf("%s %s", inst.Type(), inst.Ident()) |
| 45 | } |
| 46 | |
| 47 | // Type returns the type of the instruction. |
| 48 | func (inst *InstAdd) Type() types.Type { |