From 0af8344992572b553ed3a423e38373140ead5bf4 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 24 Sep 2025 11:39:00 -0400 Subject: Fix HighLevelILInstruction CoreArrayProvider using instr index instead of expr index --- rust/src/high_level_il/instruction.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/src') diff --git a/rust/src/high_level_il/instruction.rs b/rust/src/high_level_il/instruction.rs index e571354c..80be2a16 100644 --- a/rust/src/high_level_il/instruction.rs +++ b/rust/src/high_level_il/instruction.rs @@ -1068,7 +1068,7 @@ unsafe impl CoreArrayProviderInner for HighLevelILInstruction { unsafe fn wrap_raw<'a>(raw: &'a Self::Raw, context: &'a Self::Context) -> Self::Wrapped<'a> { context - .instruction_from_index(HighLevelInstructionIndex(*raw)) + .instruction_from_expr_index(HighLevelExpressionIndex(*raw)) .unwrap() } } -- cgit v1.3.1