From: Jakob Stoklund Olesen Date: Fri, 14 May 2010 21:55:44 +0000 (+0000) Subject: Allow virtreg redefines when verifying for RegAllocFast X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a0e618de5d9b40e5b5189c299086487e5ad767f2;p=oota-llvm.git Allow virtreg redefines when verifying for RegAllocFast git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103820 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RegAllocFast.cpp b/lib/CodeGen/RegAllocFast.cpp index db6c7096e32..c7f60ccea30 100644 --- a/lib/CodeGen/RegAllocFast.cpp +++ b/lib/CodeGen/RegAllocFast.cpp @@ -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();