instFRem converts the given LLVM IR frem instruction to a corresponding Go statement.
(inst *ir.InstFRem)
| 220 | // instFRem converts the given LLVM IR frem instruction to a corresponding Go |
| 221 | // statement. |
| 222 | func (d *decompiler) instFRem(inst *ir.InstFRem) ast.Stmt { |
| 223 | expr := d.binaryOp(inst.X, token.REM, inst.Y) |
| 224 | return d.assign(inst.Name, expr) |
| 225 | } |
| 226 | |
| 227 | // instShl converts the given LLVM IR shl instruction to a corresponding Go |
| 228 | // statement. |