instSub converts the given LLVM IR sub instruction to a corresponding Go statement.
(inst *ir.InstSub)
| 156 | // instSub converts the given LLVM IR sub instruction to a corresponding Go |
| 157 | // statement. |
| 158 | func (d *decompiler) instSub(inst *ir.InstSub) ast.Stmt { |
| 159 | expr := d.binaryOp(inst.X, token.SUB, inst.Y) |
| 160 | return d.assign(inst.Name, expr) |
| 161 | } |
| 162 | |
| 163 | // instFSub converts the given LLVM IR fsub instruction to a corresponding Go |
| 164 | // statement. |