(args: &mut Cb, v: u64)
| 2060 | |
| 2061 | #[inline] |
| 2062 | fn push_unsigned<Cb>(args: &mut Cb, v: u64) |
| 2063 | where Cb: FnMut(InstructionPart<'static>) { |
| 2064 | push_plain(args, "#"); |
| 2065 | args(InstructionPart::unsigned(v)); |
| 2066 | } |
| 2067 | |
| 2068 | #[inline] |
| 2069 | fn push_signed<Cb>(args: &mut Cb, v: i64) |
no test coverage detected