aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/armv7.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/armv7.rs b/src/armv7.rs
index 60c09d0..64c9a4d 100644
--- a/src/armv7.rs
+++ b/src/armv7.rs
@@ -1728,10 +1728,7 @@ fn format_reg_imm_mem<T: fmt::Write, Y: YaxColors>(f: &mut T, Rn: Reg, imm: u16,
(true, false) => {
write!(f, "[{}, {}{:#x}]", reg_name_colorize(Rn, colors), op, imm)
},
- (false, true) => {
- unreachable!("I don't know how to render an operand with postindex and wback==true, this seems like it should be LDRT");
- },
- (false, false) => {
+ (false, _) => {
write!(f, "[{}], {}{:#x}", reg_name_colorize(Rn, colors), op, imm)
}
}