From 7331610128610368846206388081524749722648 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Tue, 1 Jul 2025 18:01:05 -0400 Subject: Python: get_instruction_index_for_expr for all ILs --- python/lowlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/lowlevelil.py') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index ae2cc932..31d6bc0b 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -6230,7 +6230,7 @@ class LowLevelILFunction: return InstructionIndex(result) def get_expr_index_for_instruction(self, instr: InstructionIndex) -> ExpressionIndex: - result = core.BNGetLowLevelILInstructionForExpr(self.handle, instr) + result = core.BNGetLowLevelILIndexForInstruction(self.handle, instr) return ExpressionIndex(result) def get_medium_level_il_instruction_index(self, -- cgit v1.3.1