Skip to content

Commit 6ee7c08

Browse files
committed
Temporarily revert path compression
For reasons I don't understand yet, this causes an issue when trying to boot yjit-bench. Temporarily revert it.
1 parent 3e94b5f commit 6ee7c08

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

zjit/src/hir.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,9 @@ impl Function {
752752
macro_rules! find {
753753
( $x:expr ) => {
754754
{
755-
self.union_find.borrow_mut().find($x)
755+
// TODO(max): Figure out why borrow_mut().find() causes `already borrowed:
756+
// BorrowMutError`
757+
self.union_find.borrow().find_const($x)
756758
}
757759
};
758760
}

0 commit comments

Comments
 (0)