Skip to content

Commit 8ec5768

Browse files
Merge branch 'treat_call_as_jump' of github.com:Fidget-Spinner/cpython into treat_call_as_jump
2 parents be80179 + cddf406 commit 8ec5768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/jit/_optimizers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ class OptimizerAArch64(Optimizer): # pylint: disable = too-few-public-methods
579579
)
580580

581581
# https://developer.arm.com/documentation/ddi0406/b/Application-Level-Architecture/Instruction-Details/Alphabetical-list-of-instructions/BL--BLX--immediate-
582-
_re_call = re.compile(r"\s*blx??\s+(?P<target>[\w.]+)")
582+
_re_call = re.compile(r"\s*blx?\s+(?P<target>[\w.]+)")
583583
# https://developer.arm.com/documentation/ddi0602/2025-03/Base-Instructions/B--Branch-
584584
_re_jump = re.compile(r"\s*b\s+(?P<target>[\w.]+)")
585585
# https://developer.arm.com/documentation/ddi0602/2025-09/Base-Instructions/RET--Return-from-subroutine-

0 commit comments

Comments
 (0)