File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments