From a6b48153b64a227c3492d77a96e679b8c469034c Mon Sep 17 00:00:00 2001 From: Michael Krasnitski Date: Wed, 20 Mar 2024 14:57:23 -0400 Subject: Add index field to IL instructions --- rust/src/hlil/lift.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'rust/src/hlil/lift.rs') diff --git a/rust/src/hlil/lift.rs b/rust/src/hlil/lift.rs index 20f8800b..74ae0c64 100644 --- a/rust/src/hlil/lift.rs +++ b/rust/src/hlil/lift.rs @@ -23,6 +23,7 @@ pub enum HighLevelILLiftedOperand { pub struct HighLevelILLiftedInstruction { pub function: Ref, pub address: u64, + pub index: usize, pub kind: HighLevelILLiftedInstructionKind, } -- cgit v1.3.1