instFAdd converts the given LLVM IR fadd instruction to a corresponding Go statement.
(inst *ir.InstFAdd)
| 149 | // instFAdd converts the given LLVM IR fadd instruction to a corresponding Go |
| 150 | // statement. |
| 151 | func (d *decompiler) instFAdd(inst *ir.InstFAdd) ast.Stmt { |
| 152 | expr := d.binaryOp(inst.X, token.ADD, inst.Y) |
| 153 | return d.assign(inst.Name, expr) |
| 154 | } |
| 155 | |
| 156 | // instSub converts the given LLVM IR sub instruction to a corresponding Go |
| 157 | // statement. |