exprUDiv converts the given LLVM IR udiv expression to a corresponding Go statement.
(expr *constant.ExprUDiv)
| 263 | // exprUDiv converts the given LLVM IR udiv expression to a corresponding Go |
| 264 | // statement. |
| 265 | func (d *decompiler) exprUDiv(expr *constant.ExprUDiv) ast.Expr { |
| 266 | return d.binaryOp(expr.X, token.QUO, expr.Y) |
| 267 | } |
| 268 | |
| 269 | // exprSDiv converts the given LLVM IR sdiv expression to a corresponding Go |
| 270 | // statement. |