From a0e618de5d9b40e5b5189c299086487e5ad767f2 Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Fri, 14 May 2010 21:55:44 +0000 Subject: [PATCH] Allow virtreg redefines when verifying for RegAllocFast git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103820 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/RegAllocFast.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();