exprFAdd converts the given LLVM IR fadd expression to a corresponding Go statement.
(expr *constant.ExprFAdd)
| 233 | // exprFAdd converts the given LLVM IR fadd expression to a corresponding Go |
| 234 | // statement. |
| 235 | func (d *decompiler) exprFAdd(expr *constant.ExprFAdd) ast.Expr { |
| 236 | return d.binaryOp(expr.X, token.ADD, expr.Y) |
| 237 | } |
| 238 | |
| 239 | // exprSub converts the given LLVM IR sub expression to a corresponding Go |
| 240 | // statement. |