diff options
| author | James Johnson <jjohnsonjj1251@gmail.com> | 2025-09-22 19:21:51 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-10-02 16:52:02 -0400 |
| commit | 20eba1282ff32bb77880a903323cf157b86fea8c (patch) | |
| tree | 43c68712f5488cdedf609d7afe9d30af0475730a /rust/src/low_level_il/expression.rs | |
| parent | 9d2e83dad8f09208f93a9f09191c6690e2b85fa4 (diff) | |
[Rust] Improvements to LLIL flag and intrinsic operations
Diffstat (limited to 'rust/src/low_level_il/expression.rs')
| -rw-r--r-- | rust/src/low_level_il/expression.rs | 5 |
1 files changed, 1 insertions, 4 deletions
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<M, F>, - index: LowLevelExpressionIndex, - ) -> Self { + pub fn new(function: &'func LowLevelILFunction<M, F>, index: LowLevelExpressionIndex) -> Self { // TODO: Validate expression here? Self { function, |
