exprFMul converts the given LLVM IR fmul expression to a corresponding Go statement.
(expr *constant.ExprFMul)
| 257 | // exprFMul converts the given LLVM IR fmul expression to a corresponding Go |
| 258 | // statement. |
| 259 | func (d *decompiler) exprFMul(expr *constant.ExprFMul) ast.Expr { |
| 260 | return d.binaryOp(expr.X, token.MUL, expr.Y) |
| 261 | } |
| 262 | |
| 263 | // exprUDiv converts the given LLVM IR udiv expression to a corresponding Go |
| 264 | // statement. |