summaryrefslogtreecommitdiff
path: root/rust/examples
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-10 19:24:35 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit7e32ee8b629e3e4f8d061cbe0729ff961b3502d7 (patch)
treeb33eedcd9afb5422aefd1a42e95f4a9ab2e7cca0 /rust/examples
parent4180c31fda63b6ccb9ce4ee543031fe4a5060d5f (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.rs2
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());
}
}