exprSub converts the given LLVM IR sub expression to a corresponding Go statement.
(expr *constant.ExprSub)
| 239 | // exprSub converts the given LLVM IR sub expression to a corresponding Go |
| 240 | // statement. |
| 241 | func (d *decompiler) exprSub(expr *constant.ExprSub) ast.Expr { |
| 242 | return d.binaryOp(expr.X, token.SUB, expr.Y) |
| 243 | } |
| 244 | |
| 245 | // exprFSub converts the given LLVM IR fsub expression to a corresponding Go |
| 246 | // statement. |