diff options
| author | Ryan Snyder <ryan@vector35.com> | 2025-07-03 01:48:11 -0400 |
|---|---|---|
| committer | Ryan Snyder <ryan@vector35.com> | 2025-07-03 04:30:58 -0400 |
| commit | e96a7a078a9909fc1212861c9669e6af0b034e46 (patch) | |
| tree | 412f072f118f7f784e8500f8bb46dfad0354bc82 /rust/src/function.rs | |
| parent | 3bfeb0e19d97c71022bb5c50c2a21e129f675e1b (diff) | |
api: indirect branch inlining support
Diffstat (limited to 'rust/src/function.rs')
| -rw-r--r-- | rust/src/function.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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<UnresolvedIndirectBranches> { + /* + pub fn unresolved_indirect_branches(&self) -> Array<Arch> { 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 |
