exprAdd converts the given LLVM IR add expression to a corresponding Go statement.
(expr *constant.ExprAdd)
| 227 | // exprAdd converts the given LLVM IR add expression to a corresponding Go |
| 228 | // statement. |
| 229 | func (d *decompiler) exprAdd(expr *constant.ExprAdd) ast.Expr { |
| 230 | return d.binaryOp(expr.X, token.ADD, expr.Y) |
| 231 | } |
| 232 | |
| 233 | // exprFAdd converts the given LLVM IR fadd expression to a corresponding Go |
| 234 | // statement. |