Skip to content

Commit fe3fcaf

Browse files
fix lint
1 parent ce1183a commit fe3fcaf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Tools/jit/_stencils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -297,11 +297,11 @@ def process_relocations(self, known_symbols: dict[str, int]) -> None:
297297
hole.addend = ordinal
298298
hole.symbol = None
299299
# aarch64 trampolines for operand-based call targets (e.g. inlined cfunc)
300-
elif (
301-
hole.kind
302-
in {"R_AARCH64_CALL26", "R_AARCH64_JUMP26", "ARM64_RELOC_BRANCH26"}
303-
and hole.value in {HoleValue.OPERAND0, HoleValue.OPERAND1}
304-
):
300+
elif hole.kind in {
301+
"R_AARCH64_CALL26",
302+
"R_AARCH64_JUMP26",
303+
"ARM64_RELOC_BRANCH26",
304+
} and hole.value in {HoleValue.OPERAND0, HoleValue.OPERAND1}:
305305
value_expr = _HOLE_EXPRS[hole.value]
306306
ordinal = len(known_symbols)
307307
synth_name = f"_JIT_TRAMPOLINE_{hole.value.name}_{ordinal}"

0 commit comments

Comments
 (0)