[llvm] VirtRegRewriter: Fix verifier errors after regalloc failures (PR #128280)

Christudasan Devadasan via llvm-commits llvm-commits at lists.llvm.org
Sat Feb 22 00:27:37 PST 2025


================
@@ -617,9 +620,7 @@ void VirtRegRewriter::rewrite() {
         assert(Register(PhysReg).isPhysical());
 
         RewriteRegs.insert(PhysReg);
-        assert((!MRI->isReserved(PhysReg) ||
-                MF->getProperties().hasProperty(
-                    MachineFunctionProperties::Property::FailedRegAlloc)) &&
+        assert((!MRI->isReserved(PhysReg) || !IsValidAlloc) &&
----------------
cdevadas wrote:

```suggestion
        assert((!MRI->isReserved(PhysReg) || IsFailedAlloc) &&
```

https://github.com/llvm/llvm-project/pull/128280


More information about the llvm-commits mailing list