diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-05-14 21:55:44 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-05-14 21:55:44 +0000 |
commit | a0e618de5d9b40e5b5189c299086487e5ad767f2 (patch) | |
tree | a21fb026f682a31f3a34a851a1d4834cb4e98758 /lib/CodeGen/RegAllocFast.cpp | |
parent | 55ed945bfd4886313fde8075e6512219fd881ab4 (diff) |
Allow virtreg redefines when verifying for RegAllocFast
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103820 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocFast.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocFast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAllocFast.cpp b/lib/CodeGen/RegAllocFast.cpp index db6c7096e3..c7f60ccea3 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(); |