[llvm] [CodeGen] Use MCRegister instead of MCPhysReg in RegisterMaskPair. NFC (PR #123688)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 20 21:57:32 PST 2025
================
@@ -895,7 +895,7 @@ void Liveness::computeLiveIns() {
void Liveness::resetLiveIns() {
for (auto &B : DFG.getMF()) {
// Remove all live-ins.
- std::vector<unsigned> T;
+ std::vector<MCRegister> T;
----------------
arsenm wrote:
This probably should be MCPhysReg
https://github.com/llvm/llvm-project/pull/123688
More information about the llvm-commits
mailing list