Allow virtreg redefines when verifying for RegAllocFast
authorJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 14 May 2010 21:55:44 +0000 (21:55 +0000)
committerJakob Stoklund Olesen <stoklund@2pi.dk>
Fri, 14 May 2010 21:55:44 +0000 (21:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103820 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/RegAllocFast.cpp

index db6c7096e3234b689e214d3f8cab37c32930bf32..c7f60ccea305a32513e8f036465874109ae9021e 100644 (file)
@@ -782,7 +782,7 @@ bool RAFast::runOnMachineFunction(MachineFunction &Fn) {
                << "********** Function: "
                << ((Value*)Fn.getFunction())->getName() << '\n');
   if (VerifyFastRegalloc)
-    Fn.verify();
+    Fn.verify(this, true);
   MF = &Fn;
   MRI = &MF->getRegInfo();
   TM = &Fn.getTarget();