exprFSub converts the given LLVM IR fsub expression to a corresponding Go statement.
(expr *constant.ExprFSub)
| 245 | // exprFSub converts the given LLVM IR fsub expression to a corresponding Go |
| 246 | // statement. |
| 247 | func (d *decompiler) exprFSub(expr *constant.ExprFSub) ast.Expr { |
| 248 | return d.binaryOp(expr.X, token.SUB, expr.Y) |
| 249 | } |
| 250 | |
| 251 | // exprMul converts the given LLVM IR mul expression to a corresponding Go |
| 252 | // statement. |