From 76449b9a2715a6403a84b1a5b48de55d331c9b14 Mon Sep 17 00:00:00 2001 From: rva3 Date: Thu, 19 Feb 2026 20:10:49 +0200 Subject: derive Clone and Copy for armv7 instruction --- src/armv7.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/armv7.rs') diff --git a/src/armv7.rs b/src/armv7.rs index 3e289b6..1a0a7d5 100644 --- a/src/armv7.rs +++ b/src/armv7.rs @@ -770,7 +770,7 @@ pub enum Bank { } /// a `armv7` or below instruction. -#[derive(Debug, PartialEq, Eq)] +#[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct Instruction { /// the condition code for this instruction, defaults to `AL` if the instruction is /// unconditional. -- cgit v1.1