exprSDiv converts the given LLVM IR sdiv expression to a corresponding Go statement.
(expr *constant.ExprSDiv)
| 269 | // exprSDiv converts the given LLVM IR sdiv expression to a corresponding Go |
| 270 | // statement. |
| 271 | func (d *decompiler) exprSDiv(expr *constant.ExprSDiv) ast.Expr { |
| 272 | return d.binaryOp(expr.X, token.QUO, expr.Y) |
| 273 | } |
| 274 | |
| 275 | // exprFDiv converts the given LLVM IR fdiv expression to a corresponding Go |
| 276 | // statement. |