diff --git a/objdiff-core/src/arch/x86.rs b/objdiff-core/src/arch/x86.rs index 3d6422b..e5f582b 100644 --- a/objdiff-core/src/arch/x86.rs +++ b/objdiff-core/src/arch/x86.rs @@ -323,6 +323,7 @@ impl FormatterOutput for InstructionFormatterOutput<'_> { if let (Some(operand), Some((target_op_kind, reloc_size, target_value))) = (instruction_operand, self.reloc_replace) { + #[allow(clippy::match_like_matches_macro)] if instruction.op_kind(operand) == target_op_kind && match (number_kind, reloc_size) { (NumberKind::Int8 | NumberKind::UInt8, 1)