instMul converts the given LLVM IR mul instruction to a corresponding Go statement.
(inst *ir.InstMul)
| 170 | // instMul converts the given LLVM IR mul instruction to a corresponding Go |
| 171 | // statement. |
| 172 | func (d *decompiler) instMul(inst *ir.InstMul) ast.Stmt { |
| 173 | expr := d.binaryOp(inst.X, token.MUL, inst.Y) |
| 174 | return d.assign(inst.Name, expr) |
| 175 | |
| 176 | } |
| 177 | |
| 178 | // instFMul converts the given LLVM IR fmul instruction to a corresponding Go |
| 179 | // statement. |