exprFDiv converts the given LLVM IR fdiv expression to a corresponding Go statement.
(expr *constant.ExprFDiv)
| 275 | // exprFDiv converts the given LLVM IR fdiv expression to a corresponding Go |
| 276 | // statement. |
| 277 | func (d *decompiler) exprFDiv(expr *constant.ExprFDiv) ast.Expr { |
| 278 | return d.binaryOp(expr.X, token.QUO, expr.Y) |
| 279 | } |
| 280 | |
| 281 | // exprURem converts the given LLVM IR urem expression to a corresponding Go |
| 282 | // statement. |