(args: &mut Cb, v: i64)
| 2067 | |
| 2068 | #[inline] |
| 2069 | fn push_signed<Cb>(args: &mut Cb, v: i64) |
| 2070 | where Cb: FnMut(InstructionPart<'static>) { |
| 2071 | push_plain(args, "#"); |
| 2072 | args(InstructionPart::signed(v)); |
| 2073 | } |
| 2074 | |
| 2075 | /// Relocations that appear in Operand::PCOffset. |
| 2076 | fn is_pc_offset_reloc(reloc: Option<ResolvedRelocation>) -> Option<ResolvedRelocation> { |
no test coverage detected