summaryrefslogtreecommitdiff
path: root/rust/src/hlil/lift.rs
diff options
context:
space:
mode:
authorMichael Krasnitski <michael.krasnitski@gmail.com>2024-03-20 14:57:23 -0400
committerKyle Martin <krm504@nyu.edu>2024-04-09 12:19:40 -0400
commita6b48153b64a227c3492d77a96e679b8c469034c (patch)
tree1eff372ed5dad25d5437ff9a0e7d044b8892ff28 /rust/src/hlil/lift.rs
parent111be980e6578e3799ded8e685ae7158027bfe55 (diff)
Add index field to IL instructions
Diffstat (limited to 'rust/src/hlil/lift.rs')
-rw-r--r--rust/src/hlil/lift.rs1
1 files changed, 1 insertions, 0 deletions
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<HighLevelILFunction>,
pub address: u64,
+ pub index: usize,
pub kind: HighLevelILLiftedInstructionKind,
}