We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be80179 + cddf406 commit 8ec5768Copy full SHA for 8ec5768
Tools/jit/_optimizers.py
@@ -579,7 +579,7 @@ class OptimizerAArch64(Optimizer): # pylint: disable = too-few-public-methods
579
)
580
581
# 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.]+)")
+ _re_call = re.compile(r"\s*blx?\s+(?P<target>[\w.]+)")
583
# https://developer.arm.com/documentation/ddi0602/2025-03/Base-Instructions/B--Branch-
584
_re_jump = re.compile(r"\s*b\s+(?P<target>[\w.]+)")
585
# https://developer.arm.com/documentation/ddi0602/2025-09/Base-Instructions/RET--Return-from-subroutine-
0 commit comments