We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c71ed7 commit 2403e72Copy full SHA for 2403e72
rust/src/flowgraph.rs
@@ -124,6 +124,10 @@ impl FlowGraph {
124
unsafe { BNSetViewForFlowGraph(self.handle, view_ptr) }
125
}
126
127
+ pub fn lifted_il(&self) -> Option<Ref<LowLevelILRegularFunction>> {
128
+ self.function()?.lifted_il().ok()
129
+ }
130
+
131
pub fn low_level_il(&self) -> Option<Ref<LowLevelILRegularFunction>> {
132
unsafe {
133
let llil_ptr = BNGetFlowGraphLowLevelILFunction(self.handle);
rust/src/low_level_il/function.rs
@@ -70,7 +70,7 @@ where
70
71
72
73
- pub(crate) unsafe fn from_raw(handle: *mut BNLowLevelILFunction) -> Self {
+ pub unsafe fn from_raw(handle: *mut BNLowLevelILFunction) -> Self {
74
Self::from_raw_with_arch(handle, None)
75
76
0 commit comments