exprFRem converts the given LLVM IR frem expression to a corresponding Go statement.
(expr *constant.ExprFRem)
| 293 | // exprFRem converts the given LLVM IR frem expression to a corresponding Go |
| 294 | // statement. |
| 295 | func (d *decompiler) exprFRem(expr *constant.ExprFRem) ast.Expr { |
| 296 | return d.binaryOp(expr.X, token.REM, expr.Y) |
| 297 | } |
| 298 | |
| 299 | // exprShl converts the given LLVM IR shl expression to a corresponding Go |
| 300 | // statement. |