diff options
| author | Michael Krasnitski <michael.krasnitski@gmail.com> | 2024-02-27 14:26:56 -0500 |
|---|---|---|
| committer | Kyle Martin <krm504@nyu.edu> | 2024-03-18 17:46:37 -0400 |
| commit | 462276a4aa998e0b0ef804dd8d3b2eaa84a82f98 (patch) | |
| tree | 913c2d20bfe987505475f3b40f32201ff7060133 /rust/src/function.rs | |
| parent | 14abee20c4122608b21f3c2b55cba4a75d1b4308 (diff) | |
Move `ILFunction` trait into `operand_iter.rs` to make it private
Diffstat (limited to 'rust/src/function.rs')
| -rw-r--r-- | rust/src/function.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/rust/src/function.rs b/rust/src/function.rs index 16c7bf2f..273a0861 100644 --- a/rust/src/function.rs +++ b/rust/src/function.rs @@ -435,13 +435,6 @@ impl PartialEq for Function { } } -pub trait ILFunction { - type Instruction; - - fn il_instruction_from_idx(&self, expr_idx: usize) -> Self::Instruction; - fn operands_from_idx(&self, expr_idx: usize) -> [u64; 5]; -} - ///////////////// // AddressRange |
