From b302d7ba796f41b1102ee61feed8b8e212299997 Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Mon, 11 Aug 2025 10:42:07 -0700 Subject: [Rust] Fix a couple of oversights in the API 1. Some SSA-specific functions are now implemented on `LowLevelILFunction` rather than `Ref>`. 2. A lifting helper for `LLIL_TAILCALL` is added to `LowLevelILFunction`. 3. `PossibleValueSet::ImportedAddressValue` now holds the value. --- rust/src/low_level_il/function.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src/low_level_il/function.rs') diff --git a/rust/src/low_level_il/function.rs b/rust/src/low_level_il/function.rs index 177b2a1a..65c3536a 100644 --- a/rust/src/low_level_il/function.rs +++ b/rust/src/low_level_il/function.rs @@ -249,7 +249,7 @@ impl Ref> { } } -impl Ref> { +impl LowLevelILFunction { /// Return a vector of all instructions that use the given SSA register. #[must_use] pub fn get_ssa_register_uses( -- cgit v1.3.1