exprURem converts the given LLVM IR urem expression to a corresponding Go statement.
(expr *constant.ExprURem)
| 281 | // exprURem converts the given LLVM IR urem expression to a corresponding Go |
| 282 | // statement. |
| 283 | func (d *decompiler) exprURem(expr *constant.ExprURem) ast.Expr { |
| 284 | return d.binaryOp(expr.X, token.REM, expr.Y) |
| 285 | } |
| 286 | |
| 287 | // exprSRem converts the given LLVM IR srem expression to a corresponding Go |
| 288 | // statement. |