Skip to content

Commit 973e961

Browse files
disable DCE pass for now
1 parent 8190a5c commit 973e961

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tools/jit/_optimizers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,8 @@ def run(self) -> None:
548548
for _ in range(4):
549549
self._invert_hot_branches()
550550
self._remove_redundant_jumps()
551-
self._remove_unreachable()
551+
# FIXME (gh-141594): Breaks LLVM on FT builds
552+
# self._remove_unreachable()
552553
self._fixup_external_labels()
553554
self._fixup_constants()
554555
self.path.write_text(self._body())

0 commit comments

Comments
 (0)