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 | 33af4fcdeaeac930d32d37de8a68a2892929cb0f (patch) | |
tree | daa9b84904d614d46e09cb290b79b86b930ff28b /llvm/lib/CodeGen | |
parent | 2d15ecad39e64262a2ad4abdbbd8e628ff0a05e9 (diff) | |
download | bcm5719-llvm-33af4fcdeaeac930d32d37de8a68a2892929cb0f.tar.gz bcm5719-llvm-33af4fcdeaeac930d32d37de8a68a2892929cb0f.zip |
Allow virtreg redefines when verifying for RegAllocFast
llvm-svn: 103820
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocFast.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocFast.cpp b/llvm/lib/CodeGen/RegAllocFast.cpp index db6c7096e32..c7f60ccea30 100644 --- a/llvm/lib/CodeGen/RegAllocFast.cpp +++ b/llvm/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(); |