exprSRem converts the given LLVM IR srem expression to a corresponding Go statement.
(expr *constant.ExprSRem)
| 287 | // exprSRem converts the given LLVM IR srem expression to a corresponding Go |
| 288 | // statement. |
| 289 | func (d *decompiler) exprSRem(expr *constant.ExprSRem) ast.Expr { |
| 290 | return d.binaryOp(expr.X, token.REM, expr.Y) |
| 291 | } |
| 292 | |
| 293 | // exprFRem converts the given LLVM IR frem expression to a corresponding Go |
| 294 | // statement. |