Skip to content

Commit

Permalink
[NFC] Remove some unused code (#7186)
Browse files Browse the repository at this point in the history
This may have been used in the past somehow, but no longer is.
  • Loading branch information
kripken authored Jan 3, 2025
1 parent 5611a52 commit 0d7ef68
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/passes/CoalesceLocals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ struct CoalesceLocals
interferences.set(low, high, true);
}

void unInterfere(Index i, Index j) {
interferences.set(std::min(i, j), std::max(i, j), false);
}

bool interferes(Index i, Index j) {
return interferences.get(std::min(i, j), std::max(i, j));
}
Expand Down

0 comments on commit 0d7ef68

Please sign in to comment.