exprMul converts the given LLVM IR mul expression to a corresponding Go statement.
(expr *constant.ExprMul)
| 251 | // exprMul converts the given LLVM IR mul expression to a corresponding Go |
| 252 | // statement. |
| 253 | func (d *decompiler) exprMul(expr *constant.ExprMul) ast.Expr { |
| 254 | return d.binaryOp(expr.X, token.MUL, expr.Y) |
| 255 | } |
| 256 | |
| 257 | // exprFMul converts the given LLVM IR fmul expression to a corresponding Go |
| 258 | // statement. |