Skip to content

Commit 74e27d3

Browse files
committed
ARM: redirect code for Branch call
1 parent 8f0a0f7 commit 74e27d3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

chb/arm/opcodes/ARMBranch.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,9 @@ def return_value(self, xdata: InstrXData) -> Optional[XXpr]:
263263
return None
264264

265265
def annotation(self, xdata: InstrXData) -> str:
266+
if self.is_call_instruction(xdata) and xdata.has_call_target():
267+
return ARMCallOpcode.annotation(self, xdata)
268+
266269
xd = ARMBranchXData(xdata)
267270
if xd.is_ok:
268271
if self.is_call_instruction(xdata):

0 commit comments

Comments
 (0)