From bec653143bd78f1662ed1a556c4b00471f395fcc Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Fri, 26 Apr 2024 18:26:12 -0400 Subject: Add HLIL APIs to fetch the root or by instruction index, and expose the operation size in the Rust API --- rust/src/hlil/operation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/hlil/operation.rs') diff --git a/rust/src/hlil/operation.rs b/rust/src/hlil/operation.rs index 965d9517..ee0d437b 100644 --- a/rust/src/hlil/operation.rs +++ b/rust/src/hlil/operation.rs @@ -9,7 +9,7 @@ use super::HighLevelILLiftedInstruction; #[derive(Clone, Debug, PartialEq, Eq)] pub struct GotoLabel { pub(crate) function: Ref, - pub(crate) target: u64, + pub target: u64, } impl GotoLabel { -- cgit v1.3.1