Skip to content

Commit d84337a

Browse files
Clean up comment
1 parent 244480a commit d84337a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Tools/jit/_optimizers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -253,10 +253,10 @@ def _preprocess(self, text: str) -> str:
253253
continue_label = f"{self.label_prefix}_JIT_CONTINUE"
254254
text = re.sub(continue_symbol, continue_label, text)
255255
# Strip CFI directives as JIT stencils are compiled with
256-
# -fno-asynchronous-unwind-tables and don't use DWARF CFI unwind
257-
# tables (.eh_frame). The optimizer can remove blocks containing
258-
# .cfi_endproc while keeping the corresponding .cfi_startproc,
259-
# producing unbalanced CFI frames that some assemblers reject:
256+
# -fno-asynchronous-unwind-tables. The optimizer can remove blocks
257+
# containing .cfi_endproc while keeping the corresponding
258+
# .cfi_startproc, producing unbalanced CFI frames that some
259+
# assemblers reject:
260260
text = re.sub(r"^\s*\.cfi_\w+[^\n]*$", "", text, flags=re.MULTILINE)
261261
return text
262262

0 commit comments

Comments
 (0)