diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-10 19:24:35 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | 7e32ee8b629e3e4f8d061cbe0729ff961b3502d7 (patch) | |
| tree | b33eedcd9afb5422aefd1a42e95f4a9ab2e7cca0 /rust/examples | |
| parent | 4180c31fda63b6ccb9ce4ee543031fe4a5060d5f (diff) | |
[Rust] Remove `NonSSAVariant` bound from `LowLevelILFunction`
We don't do enough with the lifted il != non lifted il to justify the bound.
This makes modifying IL much less work as the historical lifted il bound is gone.
Diffstat (limited to 'rust/examples')
| -rw-r--r-- | rust/examples/workflow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/examples/workflow.rs b/rust/examples/workflow.rs index 2d8f0054..49560579 100644 --- a/rust/examples/workflow.rs +++ b/rust/examples/workflow.rs @@ -41,7 +41,7 @@ fn example_activity(analysis_context: &AnalysisContext) { } } } - analysis_context.set_lifted_il_function(&llil); + analysis_context.set_llil_function(&llil.finalized()); } } |
