From 20eba1282ff32bb77880a903323cf157b86fea8c Mon Sep 17 00:00:00 2001 From: James Johnson Date: Mon, 22 Sep 2025 19:21:51 -0400 Subject: [Rust] Improvements to LLIL flag and intrinsic operations --- rust/src/low_level_il/expression.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'rust/src/low_level_il/expression.rs') diff --git a/rust/src/low_level_il/expression.rs b/rust/src/low_level_il/expression.rs index ecd850f9..de69e112 100644 --- a/rust/src/low_level_il/expression.rs +++ b/rust/src/low_level_il/expression.rs @@ -98,10 +98,7 @@ where F: FunctionForm, R: ExpressionResultType, { - pub(crate) fn new( - function: &'func LowLevelILFunction, - index: LowLevelExpressionIndex, - ) -> Self { + pub fn new(function: &'func LowLevelILFunction, index: LowLevelExpressionIndex) -> Self { // TODO: Validate expression here? Self { function, -- cgit v1.3.1