Type returns the type of the instruction.
()
| 110 | |
| 111 | // Type returns the type of the instruction. |
| 112 | func (inst *InstFAdd) Type() types.Type { |
| 113 | // Cache type if not present. |
| 114 | if inst.Typ == nil { |
| 115 | inst.Typ = inst.X.Type() |
| 116 | } |
| 117 | return inst.Typ |
| 118 | } |
| 119 | |
| 120 | // LLString returns the LLVM syntax representation of the instruction. |
| 121 | // |