(args: &mut Cb, style: ShiftStyle, amount: u8)
| 2007 | |
| 2008 | #[inline] |
| 2009 | fn push_shift<Cb>(args: &mut Cb, style: ShiftStyle, amount: u8) |
| 2010 | where Cb: FnMut(InstructionPart<'static>) { |
| 2011 | push_opaque(args, shift_style(style)); |
| 2012 | if amount != 0 { |
| 2013 | push_plain(args, " "); |
| 2014 | push_unsigned(args, amount as u64); |
| 2015 | } |
| 2016 | } |
| 2017 | |
| 2018 | #[inline] |
| 2019 | fn push_condition_code<Cb>(args: &mut Cb, cond: u8) |
no test coverage detected