diff options
Diffstat (limited to 'rust/src/mlil/operation.rs')
| -rw-r--r-- | rust/src/mlil/operation.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/mlil/operation.rs b/rust/src/mlil/operation.rs index fdeaaf1b..822688a6 100644 --- a/rust/src/mlil/operation.rs +++ b/rust/src/mlil/operation.rs @@ -1,4 +1,4 @@ -use std::collections::HashMap; +use std::collections::BTreeMap; use crate::types::{ConstantData, ILIntrinsic, SSAVariable, Variable}; @@ -129,7 +129,7 @@ pub struct JumpTo { #[derive(Clone, Debug, PartialEq)] pub struct LiftedJumpTo { pub dest: Box<MediumLevelILLiftedInstruction>, - pub targets: HashMap<u64, u64>, + pub targets: BTreeMap<u64, u64>, } // GOTO |
