summaryrefslogtreecommitdiff
path: root/rust/src/high_level_il
diff options
context:
space:
mode:
authorJosh Ferrell <josh@vector35.com>2025-09-24 11:39:00 -0400
committerJosh Ferrell <josh@vector35.com>2025-09-24 11:39:00 -0400
commit0af8344992572b553ed3a423e38373140ead5bf4 (patch)
tree5712b77fe2b4a8a7c756f1ae79eafd2688159832 /rust/src/high_level_il
parent8cc5a889e7c87037ba3931b81d79b1bf343a5991 (diff)
Fix HighLevelILInstruction CoreArrayProvider using instr index instead of expr index
Diffstat (limited to 'rust/src/high_level_il')
-rw-r--r--rust/src/high_level_il/instruction.rs2
1 files changed, 1 insertions, 1 deletions
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()
}
}