From e96a7a078a9909fc1212861c9669e6af0b034e46 Mon Sep 17 00:00:00 2001 From: Ryan Snyder Date: Thu, 3 Jul 2025 01:48:11 -0400 Subject: api: indirect branch inlining support --- rust/src/function.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'rust/src/function.rs') diff --git a/rust/src/function.rs b/rust/src/function.rs index c61e4291..de6d2d41 100644 --- a/rust/src/function.rs +++ b/rust/src/function.rs @@ -2372,11 +2372,13 @@ impl Function { } /// List of address of unresolved indirect branches - pub fn unresolved_indirect_branches(&self) -> Array { + /* + pub fn unresolved_indirect_branches(&self) -> Array { let mut count = 0; let result = unsafe { BNGetUnresolvedIndirectBranches(self.handle, &mut count) }; unsafe { Array::new(result, count, ()) } } + */ /// Returns a string representing the provenance. This portion of the API /// is under development. Currently the provenance information is -- cgit v1.3.1