summaryrefslogtreecommitdiff
path: root/lib/CodeGen/RegAllocFast.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-05-14 21:55:44 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-05-14 21:55:44 +0000
commita0e618de5d9b40e5b5189c299086487e5ad767f2 (patch)
treea21fb026f682a31f3a34a851a1d4834cb4e98758 /lib/CodeGen/RegAllocFast.cpp
parent55ed945bfd4886313fde8075e6512219fd881ab4 (diff)
downloadllvm-a0e618de5d9b40e5b5189c299086487e5ad767f2.tar.gz
llvm-a0e618de5d9b40e5b5189c299086487e5ad767f2.tar.bz2
llvm-a0e618de5d9b40e5b5189c299086487e5ad767f2.tar.xz
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.cpp2
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();