File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -145,13 +145,13 @@ def _map_diff_on_programs(self) -> None:
145
145
bb_f1 .algorithhm = bb_f2 .algorithm = bb_match .algorithm
146
146
147
147
# Iterate instructions to map them
148
- for ins_f1 in bb_f1 .uncached_instructions .values ():
148
+ for ins_f1 in bb_f1 .instructions .values ():
149
149
# Instruction is matched
150
150
if ins_f1 .addr in self .primary_instruction_match :
151
151
# Within the context of the current function
152
152
if f1 .addr in self .primary_instruction_match [ins_f1 .addr ]:
153
153
ins_f2_addr = self .primary_instruction_match [ins_f1 .addr ][f1 .addr ]
154
- ins_f2 = bb_f2 .uncached_instructions [ins_f2_addr ] # retrieve instruction in secondary basic block
154
+ ins_f2 = bb_f2 .instructions [ins_f2_addr ] # retrieve instruction in secondary basic block
155
155
ins_f1 .match , ins_f2 .match = ins_f2 , ins_f1
156
156
157
157
@staticmethod
You can’t perform that action at this time.
0 commit comments