From ff406c03609896c0e764bf2ae5575a4c20538aab Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 11 May 2025 15:14:28 -0400 Subject: [Rust] Remove useless alias function --- rust/src/medium_level_il/instruction.rs | 6 ------ 1 file changed, 6 deletions(-) (limited to 'rust/src/medium_level_il') diff --git a/rust/src/medium_level_il/instruction.rs b/rust/src/medium_level_il/instruction.rs index ae550d91..b043788d 100644 --- a/rust/src/medium_level_il/instruction.rs +++ b/rust/src/medium_level_il/instruction.rs @@ -1376,12 +1376,6 @@ impl MediumLevelILInstruction { Variable::new(var.ty, index, var.storage) } - /// alias for [MediumLevelILInstruction::split_var_for_definition] - #[inline] - pub fn get_split_var_for_definition(&self, var: &Variable) -> Variable { - self.split_var_for_definition(var) - } - fn lift_operand(&self, expr_idx: usize) -> Box { // TODO: UGH, if your gonna call it expr_idx, call the instruction and expression!!!!! // TODO: We dont even need to say instruction in the type! -- cgit v1.3.1