Skip to content

Commit eba3c5a

Browse files
committed
Add generate_ssa_form to LowLevelILFunction
1 parent 0493db0 commit eba3c5a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

rust/src/low_level_il/function.rs

+6
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,12 @@ impl LowLevelILFunction<CoreArchitecture, Mutable, NonSSA<LiftedNonSSA>> {
198198

199199
unsafe { Self::ref_from_raw(arch, handle) }
200200
}
201+
202+
pub fn generate_ssa_form(&self) {
203+
use binaryninjacore_sys::BNGenerateLowLevelILSSAForm;
204+
205+
unsafe { BNGenerateLowLevelILSSAForm(self.handle) };
206+
}
201207
}
202208

203209
impl<A, M, F> ToOwned for LowLevelILFunction<A, M, F>

0 commit comments

Comments
 (0)